@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  background: white;
  color: black;
  overflow-x: hidden;
}

#wrap {
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
}

section {
  max-width: 100%;
  margin: auto;
  padding: 120px 0px 120px 0px;
}
@media (max-width: 480px) {
  section {
    padding: 80px 24px 80px 24px;
  }
}

.stories-section,
.season-section,
.main-news-section {
  max-width: 1440px;
  width: 100%;
  padding: 120px 20px 120px 20px;
}

.container {
  max-width: 1440px;
}

.notice-section {
  background-color: #f7f7f7;
  padding: 56px 0;
  position: relative;
}
@media (max-width: 768px) {
  .notice-section {
    padding: 40px 0;
    margin-top: 40px;
  }
}

.notice-detail-section {
  display: none;
  background-color: #f7f7f7;
  padding: 56px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .notice-detail-section {
    margin-top: 40px;
  }
}
.notice-detail-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: black;
  min-width: 100%;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
}

.section-sub-title {
  font-size: 32px;
}
@media (max-width: 1024px) {
  .section-sub-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-sub-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .section-sub-title {
    font-size: 20px;
  }
}

.content-sub-title {
  font-size: 26px;
}
@media (max-width: 1024px) {
  .content-sub-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .content-sub-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .content-sub-title {
    font-size: 20px;
  }
}

.content-sub-description {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .content-sub-description {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .content-sub-description {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .content-sub-description {
    font-size: 18px;
  }
}

.card-tag {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .card-tag {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .card-tag {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .card-tag {
    font-size: 13px;
  }
}

.sub-title {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .sub-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .sub-title {
    font-size: 20px;
  }
}

.sub-description {
  font-size: 18px;
}
@media (max-width: 480px) {
  .sub-description {
    font-size: 16px;
    line-height: 28px;
  }
}

.header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #bababa;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  /* Ham Button */
}
.header .header-container {
  padding: 24px 50px;
}
@media (max-width: 1024px) {
  .header .header-container {
    padding: 24px 32px;
  }
}
@media (max-width: 768px) {
  .header .header-container {
    padding: 24px 24px;
  }
}
@media (max-width: 480px) {
  .header .header-container {
    padding: 16px;
  }
}
.header .header-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1024px) {
  .header .header-content {
    height: unset;
  }
}
@media (max-width: 768px) {
  .header .header-content {
    position: relative;
  }
}
.header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-top .header-logo {
  height: 26px;
  width: 237px;
}
@media (max-width: 768px) {
  .header .header-top .header-logo {
    height: 100%;
    width: 220px;
  }
}
@media (max-width: 480px) {
  .header .header-top .header-logo {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.header .header-top .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .header-top .header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header-top .header-actions {
    margin-right: 32px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .header .header-top .header-actions {
    gap: 8px;
    margin-right: 28px;
  }
}
.header .header-top .header-actions .header-action-item {
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .header-top .header-actions .header-action-item {
    padding: 1px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .header .header-top .header-actions .header-action-item {
    width: 24px;
    height: 24px;
    padding: 2px;
  }
}
.header .header-top .header-actions .header-action-item:nth-child(2) img {
  width: 16px;
}
.header .header-top .header-actions .header-action-item p {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: black;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .header .header-top .header-actions .header-action-item p {
    display: none;
  }
}
.header .header-top .header-actions .header-action-item img {
  width: 20px;
}
.header .header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
}
.header .header-nav.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 24px;
  top: 26px;
  width: 220px;
  height: 25px;
  background-image: url(/static/shinyoung-wacoal/img/shiny-logo.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .header .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    background-color: #fff;
    height: 100vh;
    justify-content: center;
    flex-direction: column;
    gap: 48px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    padding: 80px 24px;
    overflow-y: auto;
  }
  .header .header-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 480px) {
  .header .header-nav {
    gap: 24px;
  }
}
.header .header-nav .gnb-list {
  display: flex;
  gap: 40px;
  height: 100%;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .header-nav .gnb-list {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header .header-nav .gnb-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 80px 20px;
    height: auto;
    gap: 32px;
  }
}
.header .header-nav .gnb-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
  height: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .header .header-nav .gnb-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
.header .header-nav .gnb-item .gnb-link {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: pointer;
  padding: 0;
}
.header .header-nav .gnb-item .gnb-link:hover {
  color: #d10000;
}
@media (max-width: 768px) {
  .header .header-nav .gnb-item .gnb-link {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .header-nav .gnb-item .gnb-link.has-sub::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s;
  }
  .header .header-nav .gnb-item .gnb-link.on::after {
    transform: rotate(-135deg);
  }
}
.header .header-nav .gnb-item .sub-menu {
  display: none;
  background-color: #F8F9FA;
  width: 100%;
  padding: 8px;
}
@media (min-width: 769px) {
  .header .header-nav .gnb-item .sub-menu {
    display: block;
    position: absolute;
    top: 41px;
    left: -15px;
    z-index: 1000;
    width: 190px;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header .header-nav .gnb-item .sub-menu > li {
    position: relative;
    width: 100%;
  }
  .header .header-nav .gnb-item .sub-menu > li > a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
  }
  .header .header-nav .gnb-item .sub-menu > li > a:hover {
    background-color: #f5f5f5;
  }
}
.header .header-nav .gnb-item .sub-menu a {
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}
.header .header-nav .gnb-item .sub-menu a:hover {
  background-color: #E9ECEF;
}
@media (min-width: 769px) {
  .header .header-nav .gnb-item .sub-menu-item-has-child {
    position: relative;
  }
  .header .header-nav .gnb-item .sub-menu-item-has-child:hover > .sub-menu-child {
    opacity: 1;
    visibility: visible;
  }
}
.header .header-nav .gnb-item .sub-menu-child {
  display: none;
  background-color: #eee;
}
.header .header-nav .gnb-item .sub-menu-child li a {
  display: block;
  padding: 16px 20px 16px 40px;
  font-size: 16px;
  color: #666;
}
@media (min-width: 769px) {
  .header .header-nav .gnb-item .sub-menu-child {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1010;
    min-width: 180px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .header .header-nav .gnb-item .sub-menu-child li a {
    display: block;
    padding: 8px 15px;
    font-size: 16px;
    color: #666;
  }
  .header .header-nav .gnb-item .sub-menu-child li a:hover {
    background-color: #eaeaea;
  }
}
.header .ham-btn-box {
  display: none;
  width: 32px;
  height: 32px;
  padding: 8px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .ham-btn-box {
    display: block; /* 태블릿 이하에서만 보임 */
  }
}
@media (max-width: 480px) {
  .header .ham-btn-box {
    width: 24px;
    height: 24px;
    padding: 6px;
  }
}
.header .ham-btn-box__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.header .ham-btn-box__inner > span {
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  transition: all 0.1s ease;
  transform-origin: center;
}
@media (max-width: 480px) {
  .header .ham-btn-box__inner > span {
    height: 2px;
  }
}
.header .ham-btn-box__inner.active {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 60;
}
.header .ham-btn-box__inner.active .bar-01 {
  transform: translateY(5px) rotate(45deg);
}
@media (max-width: 480px) {
  .header .ham-btn-box__inner.active .bar-01 {
    transform: translateY(5px) rotate(45deg);
  }
}
.header .ham-btn-box__inner.active .bar-02 {
  opacity: 0;
}
.header .ham-btn-box__inner.active .bar-03 {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 480px) {
  .header .ham-btn-box__inner.active .bar-03 {
    transform: translateY(-5px) rotate(-45deg);
  }
}

a {
  text-decoration: none;
}

.footer {
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.footer .footer-top-bar {
  width: 100%;
  background: white;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #f0f0f0;
}
.footer .footer-top-bar .footer-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  .footer .footer-top-bar .footer-top-container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .footer .footer-top-bar .footer-top-container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .footer .footer-top-bar .footer-top-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
}
.footer .footer-top-bar .footer-top-container .social-links {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.footer .footer-top-bar .footer-top-container .social-links .social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.footer .footer-top-bar .footer-top-container .social-links .social-icon:hover {
  opacity: 0.7;
}
.footer .footer-top-bar .footer-top-container .social-links .social-icon svg {
  width: 100%;
  height: 100%;
}
.footer .footer-top-bar .footer-top-container .social-links .social-icon-windows svg {
  width: 24px;
  height: 24px;
}
.footer .footer-top-bar .footer-top-container .link-dropdown {
  display: flex;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap {
  position: relative;
  width: fit-content;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-brand p {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  color: black;
  margin: 0;
}
@media (max-width: 480px) {
  .footer .footer-top-bar .footer-top-container .family-brand-wrap .family-brand p {
    font-size: 13px;
    white-space: nowrap;
  }
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-brand .dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-brand .dropdown-arrow svg {
  width: 12px;
  height: 7px;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-list {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 10px 0;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-list li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-list li a:hover {
  background: #f5f5f5;
  color: #000;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap .family-list li a img {
  width: 16px;
  height: 16px;
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap.active .family-brand .dropdown-arrow {
  transform: rotate(0deg);
}
.footer .footer-top-bar .footer-top-container .family-brand-wrap.active .family-list {
  display: block;
}

.footer-main {
  padding: 70px 0 70px;
}
.footer-main .footer-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1440px;
  margin: auto;
  padding: 0 40px;
  width: 100%;
  gap: 5%;
}
@media (max-width: 1024px) {
  .footer-main .footer-container {
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .footer-main .footer-container {
    padding: 0 20px;
  }
}
.footer-main .footer-container .footer-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 259px;
  max-width: 400px;
}
@media (max-width: 1024px) {
  .footer-main .footer-container .footer-info {
    border-right: 0;
    max-width: unset;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-container .footer-info {
    gap: 24px;
  }
}
.footer-main .footer-container .footer-info .footer-logo {
  width: 237px;
  height: 26px;
}
.footer-main .footer-container .footer-info .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-main .footer-container .footer-info .footer-address {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #3a3a3a;
}
.footer-main .footer-container .footer-info .footer-address p {
  margin-bottom: 0;
}
.footer-main .footer-container .footer-info .footer-address p:last-child {
  margin-top: 0;
}
.footer-main .footer-container .footer-divider {
  width: 1px;
  height: 286px;
  background: #e3e3e3;
}
@media (max-width: 1024px) {
  .footer-main .footer-container .footer-divider {
    display: none;
  }
}
.footer-main .footer-container .footer-divider:first-of-type {
  left: 507px;
}
.footer-main .footer-container .footer-divider:last-of-type {
  right: 210px;
}
.footer-main .footer-container .footer-menu {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid #e3e3e3;
  padding: 0 6%;
  border-left: 1px solid #e3e3e3;
}
@media (max-width: 1024px) {
  .footer-main .footer-container .footer-menu {
    border-right: 0;
    border-left: 0;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-container .footer-menu {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-main .footer-container .footer-menu {
    width: 100%;
    gap: 32px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-main .footer-container .footer-menu .footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100px;
}
.footer-main .footer-container .footer-menu .footer-column .footer-column-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  color: rgba(110, 13, 37, 0.9);
  border-bottom: 1px solid #6e0d25;
  height: 16px;
  width: fit-content;
}
.footer-main .footer-container .footer-menu .footer-column .footer-link {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  color: black;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.footer-main .footer-container .footer-menu .footer-column .footer-link:hover {
  color: #6e0d25;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-toggle span {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  color: black;
  white-space: nowrap;
  text-align: left;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-toggle svg {
  width: 8px;
  height: 4px;
  transform: rotate(180deg);
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-toggle:hover span {
  color: #6e0d25;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-items {
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: 0.2s ease;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-items a {
  color: rgba(0, 0, 0, 0.5);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.56px;
  white-space: nowrap;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-items p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.56px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.footer-main .footer-container .footer-menu .footer-column .footer-submenu .footer-submenu-items p:hover {
  color: rgba(0, 0, 0, 0.8);
}
.footer-main .footer-container .footer-menu .footer-column .footer-media-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main .footer-container .footer-menu .footer-column .footer-ir-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main .footer-container .footer-menu .footer-column .footer-ir-section .footer-ir-title {
  width: 11px;
}
.footer-main .footer-container .footer-cs {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-main .footer-container .footer-cs h4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.9);
  height: 16px;
  white-space: nowrap;
}
.footer-main .footer-container .footer-cs p a {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.56px;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.footer-main .footer-container .footer-cs p:hover {
  color: rgba(0, 0, 0, 0.8);
}

.footer-bottom {
  width: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.footer-bottom .footer-bottom-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .footer-bottom .footer-bottom-container {
    padding: 0 32px;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .footer-bottom .footer-bottom-container {
    padding: 0 16px;
  }
}
.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .footer-bottom .footer-bottom-links {
    padding: 20px 0 20px 0;
  }
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-links {
    padding: 20px 0 0 0;
  }
}
.footer-bottom .footer-bottom-links a {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
}
.footer-bottom .footer-bottom-links a:hover {
  color: white;
}
.footer-bottom .footer-copyright {
  font-family: "Pretendard", "Noto Sans Symbols", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .footer-bottom .footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    word-break: keep-all;
    line-height: 24px;
    white-space: normal;
  }
}

.page-headline {
  display: unset;
}
.page-headline h1 {
  word-break: keep-all;
}

.sub-visual {
  background: white;
  width: 100%;
  padding: 0px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 200px;
}
@media (max-width: 768px) {
  .sub-visual {
    padding: 0px 32px 0;
    margin-top: 140px;
  }
  .sub-visual .sub-visual-container {
    gap: 16px;
  }
  .sub-visual .sub-visual-container .breadcrumb {
    font-size: 10px;
  }
  .sub-visual .sub-visual-container .page-category {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .sub-visual {
    padding: 0px 20px;
    margin-top: 100px;
  }
}
.sub-visual .sub-visual-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}
.sub-visual .sub-visual-container .breadcrumb {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #555555;
  line-height: normal;
}
.sub-visual .sub-visual-container .breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #4c4c4c;
  color: #4c4c4c;
}
.sub-visual .sub-visual-container .page-category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #aca376;
  line-height: normal;
}
.sub-visual .sub-visual-container .page-headline {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  justify-content: center;
}
.sub-visual .sub-visual-container .page-headline h1 {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
  letter-spacing: -2.1px;
  color: black;
  text-align: left;
  width: 100%;
  max-width: 1440px;
}
@media (max-width: 1024px) {
  .sub-visual .sub-visual-container .page-headline h1 {
    font-size: 40px;
    line-height: 56px;
  }
}
@media (max-width: 768px) {
  .sub-visual .sub-visual-container .page-headline h1 {
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -1.08px;
  }
}
@media (max-width: 480px) {
  .sub-visual .sub-visual-container .page-headline h1 {
    font-size: 28px;
    line-height: 40px;
  }
}

.sub-visual-image {
  background-color: #ccc;
  max-width: 1440px;
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .sub-visual-image {
    height: 300px;
    margin-top: 20px;
  }
}
.sub-visual-image img {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.97);
  margin: auto;
  width: 100%;
  height: 100%;
}
.sub-visual-image img.pink-r-img {
  object-position: center;
}

.tab-navigation-wrapper {
  width: 100%;
}

.tab-navigation {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 80px auto;
  padding: 0;
}
@media (max-width: 480px) {
  .tab-navigation {
    margin: 40px auto;
  }
}
.tab-navigation .tab-item {
  width: 108px;
  height: 58px;
  background: white;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid gainsboro;
  transition: all 0.3s ease;
}
.tab-navigation .tab-item span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.54px;
  color: black;
  white-space: pre;
  line-height: normal;
}
.tab-navigation .tab-item.tab-active {
  background: black;
  border-right: none;
}
.tab-navigation .tab-item.tab-active span {
  color: white;
}
.tab-navigation .tab-item:hover:not(.tab-active) {
  background: #f5f5f5;
}
.tab-navigation .tab-item:last-child {
  border-right: 1px solid gainsboro;
}
.tab-navigation .tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 31px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid gainsboro;
  border-left: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .tab-navigation .tab-button {
    font-size: 16px;
    padding: 16px 28px;
  }
}
@media (max-width: 768px) {
  .tab-navigation .tab-button {
    font-size: 15px;
    padding: 14px 24px;
    flex: 1;
    min-width: 120px;
  }
  .tab-navigation .tab-button:nth-child(2) {
    border-left: 1px solid gainsboro;
  }
}
@media (max-width: 480px) {
  .tab-navigation .tab-button {
    font-size: 14px;
    padding: 12px 20px;
    min-width: 80px;
  }
}
.tab-navigation .tab-button:first-child {
  border-left: 1px solid gainsboro;
}
.tab-navigation .tab-button.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  z-index: 1;
}
.tab-navigation .tab-button:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
}
.tab-navigation .tab-button:active {
  transform: scale(0.98);
}

.history-nav {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .history-nav {
    padding: 0 32px;
  }
}
@media (max-width: 480px) {
  .history-nav {
    padding: 0 20px;
  }
}

.sub-intro-section {
  width: 100%;
  padding: 120px 40px 120px;
}
@media (max-width: 1024px) {
  .sub-intro-section {
    padding: 120px 32px 120px;
  }
}
@media (max-width: 768px) {
  .sub-intro-section {
    padding: 120px 24px 120px;
  }
}
@media (max-width: 480px) {
  .sub-intro-section {
    padding: 80px 20px 80px;
  }
}
.sub-intro-section__design-lab {
  padding: 160px 0px 120px;
}
.sub-intro-section .sub-intro-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid__design-lab {
  grid-template-columns: repeat(3, 1fr);
  order: 3;
}
@media (max-width: 1024px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid__design-lab {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid__design-lab {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card {
  background: #FFF5F4;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card__design-lab {
  padding: 32px 32px 64px 32px;
  background: rgba(103, 178, 191, 0.1);
  height: 320px;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-header .sub-intro-card-tag {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.64px;
  color: lightcoral;
  line-height: 1;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-header .sub-intro-card-title {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-weight: 700;
  letter-spacing: -0.96px;
  color: black;
  text-transform: uppercase;
  line-height: 32px;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.54px;
  color: #333333;
  text-transform: uppercase;
  word-break: keep-all;
}
@media (max-width: 1024px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content .only-lg {
    display: block;
  }
}
@media (max-width: 480px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content .only-lg {
    display: none;
  }
}
@media (max-width: 480px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content {
    font-size: 16px;
  }
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .sub-intro-card-content p {
  margin: 0;
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .laborator-card-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
@media (max-width: 768px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .laborator-card-icon {
    width: 100px;
    height: 100px;
    right: 32px;
    bottom: 32px;
  }
}
@media (max-width: 480px) {
  .sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .laborator-card-icon {
    width: 80px;
    height: 80px;
    right: 24px;
    bottom: 24px;
  }
}
.sub-intro-section .sub-intro-container .sub-intro-cards-grid .sub-intro-card .laborator-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sub-intro-section .sub-intro-container .sub-intro-image {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .sub-intro-section .sub-intro-container .sub-intro-image {
    order: 2;
    margin-top: 1rem;
  }
}
.sub-intro-section .sub-intro-container .sub-intro-image img {
  max-width: 960px;
  width: 100%;
  object-fit: contain;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 0 !important;
  }
}
.section-header .section-label {
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  color: #000;
  margin: 0;
}
@media (max-width: 480px) {
  .section-header .section-label {
    font-size: 18px;
  }
}
.section-header .section-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #363636;
  margin: 0;
}
@media (max-width: 480px) {
  .section-header .section-subtitle {
    word-break: keep-all;
    font-size: 20px;
  }
}

.section-category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #999;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .section-category {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .section-category {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-category {
    font-size: 16px;
  }
}
.section-category__design-lab {
  color: #01A7C2;
}
.section-category__gpp {
  color: #DC9A57;
}
.section-category__pink-ribbon {
  color: #E3508A;
}
.section-category__bra-recycle {
  color: #005F28;
}
.section-category__donation {
  color: #495057;
}

.section-title {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: black;
  word-break: keep-all;
  line-height: normal;
  text-align: center;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-title {
    margin: 0;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
}

.sub-intro-description {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: -1.4px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
  word-break: keep-all;
}
.sub-intro-description.design-lab {
  order: 2;
}
@media (max-width: 1024px) {
  .sub-intro-description {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .sub-intro-description {
    font-size: 18px;
    line-height: 32px;
    order: 3;
  }
}
@media (max-width: 480px) {
  .sub-intro-description {
    font-size: 16px;
    line-height: 28px;
  }
}
.sub-intro-description p {
  margin: 0;
}
@media (max-width: 768px) {
  .sub-intro-description p .only-md {
    display: none;
  }
}

.location-title {
  font-weight: 500;
  font-size: 40px;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #000000;
  margin: 0;
  text-align: left;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #fdfdfd;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 60px;
  width: fit-content;
}
@media (max-width: 480px) {
  .back-button {
    padding: 10px 16px;
    font-size: 14px;
    margin-left: 1rem;
  }
}

.brand-back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #fdfdfd;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 60px;
  width: fit-content;
}
@media (max-width: 480px) {
  .brand-back-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 6rem;
  right: 4rem;
  z-index: 50;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #A77758;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(4rem);
  pointer-events: none;
  border: 1px solid #dcd7be;
}
@media (max-width: 480px) {
  .scroll-to-top {
    right: 1rem;
  }
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-to-top:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.scroll-to-top:active {
  transform: translateY(-2px);
}
.scroll-to-top svg {
  display: block;
  width: 24px;
  height: 24px;
}

.history .section-wrap {
  position: relative;
  max-width: 1440px;
  margin: auto;
  padding: 120px 40px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .history .section-wrap {
    padding: 0px 40px 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .history .section-wrap {
    padding: 0px 20px 0;
  }
}
.history .section-wrap .section {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .history .section-wrap .section {
    flex-direction: column;
    gap: 540px;
    padding: 0 100px;
  }
}
@media (max-width: 768px) {
  .history .section-wrap .section {
    gap: 500px;
    padding: 0;
  }
}

.history-scroll {
  width: 100%;
  max-width: 760px;
  position: relative;
}
@media (max-width: 1024px) {
  .history-scroll {
    display: none;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .history-scroll {
    margin: auto;
    padding-left: 0;
    display: none;
  }
}
@media (max-width: 480px) {
  .history-scroll {
    margin: auto;
    padding-left: 80px;
  }
}
.history-scroll > div {
  width: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .history-scroll > div {
    width: 100%;
  }
}
.history-scroll > div p {
  font-size: 80px;
  font-weight: 900;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .history-scroll > div p {
    font-size: 48px !important;
  }
}
.history-scroll > div > div {
  margin-top: 70px;
  position: relative;
  max-width: 640px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .history-scroll > div > div {
    margin-top: 24px;
  }
}
.history-scroll > div > div > div p {
  width: 100%;
  height: 460px;
  max-width: 640px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .history-scroll > div > div > div p {
    width: 100%;
    height: 330px;
  }
}

.history-wrap {
  position: relative;
}
@media (max-width: 1024px) {
  .history-wrap {
    margin: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .history-wrap {
    width: 100%;
    margin: 0 100px;
  }
}
@media (max-width: 480px) {
  .history-wrap {
    max-width: 380px;
    width: 100%;
    margin: 0;
  }
}
.history-wrap .line {
  position: absolute;
  left: -76px;
  top: 30px;
  width: 4px;
  height: calc(100% + 8830px);
  background: #D9D7D7;
}
@media (max-width: 1024px) {
  .history-wrap .line {
    height: calc(100% + 6170px);
  }
}
@media (max-width: 768px) {
  .history-wrap .line {
    height: calc(100% + 6590px);
  }
}
@media (max-width: 480px) {
  .history-wrap .line {
    position: absolute;
    left: 0;
    top: 30px;
    width: 4px;
    height: calc(100% + 6920px);
    background: #D9D7D7;
  }
}
.history-wrap > ul {
  width: 548px;
  padding-top: 0;
}
@media (max-width: 1024px) {
  .history-wrap > ul {
    width: auto;
  }
}
@media (max-width: 768px) {
  .history-wrap > ul {
    padding-right: 100px;
  }
}
@media (max-width: 480px) {
  .history-wrap > ul {
    padding: 0 0 0 40px;
  }
}

.ethics-dropdown-wrap {
  position: relative;
  width: fit-content;
}
.ethics-dropdown-wrap .ethics-dropdown {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0px 20px 12px 0;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.ethics-dropdown-wrap .ethics-dropdown p {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  color: black;
  margin: 0;
  cursor: pointer;
}
.ethics-dropdown-wrap .dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.ethics-dropdown-wrap .dropdown-arrow svg {
  width: 16px;
  height: 10px;
}
.ethics-dropdown-wrap .ethics-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 10px 0;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.ethics-dropdown-wrap .ethics-dropdown-list li a {
  display: block;
  padding: 10px 22px;
  font-size: 20px;
  color: #495057;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
.ethics-dropdown-wrap .ethics-dropdown-list li a:hover {
  background: #f5f5f5;
  color: #000;
}
.ethics-dropdown-wrap.active .ethics-dropdown .dropdown-arrow {
  transform: rotate(0deg);
}
.ethics-dropdown-wrap.active .ethics-dropdown-list {
  display: block;
}

.accordion-content-row {
  display: none;
  width: 100%;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.accordion-content-row .accordion-content-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}
.accordion-content-row .accordion-content-inner .content-label {
  font-weight: 700;
  color: #333;
  width: 80px;
  flex-shrink: 0;
  margin-top: 5px;
}
.accordion-content-row .accordion-content-inner .content-body {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  white-space: pre-wrap;
}

.table-body-row {
  cursor: default;
}
.table-body-row.accordion-toggle {
  cursor: pointer;
}
.table-body-row .answer-cell {
  /* 답변 셀의 기본 스타일 */
  position: relative;
}

.table-body-row.accordion-toggle.active .accordion-arrow {
  transform: rotate(180deg);
}

.answer-completed {
  font-weight: bold;
  color: #1abc9c;
  background-color: #e8f8f5;
  border-radius: 4px;
  padding: 2px 5px;
}

/* pagination-controls에 대한 CSS */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  gap: 8px; /* 버튼 간격 */
}

.pagination-controls button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  color: #212529;
}

.pagination-controls button.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
  font-weight: bold;
}

.pagination-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.page-text {
  background-color: #efefef;
  padding: 8px 20px;
  white-space: nowrap;
}

/* ==================== Page Container ==================== */
.page-container {
  max-width: 1440px;
  margin: 200px auto 100px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .page-container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .page-container {
    flex-direction: column;
    margin: 0 0 40px;
    gap: 40px;
    padding: 0;
  }
}

/* ==================== Sidebar ==================== */
.sidebar {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 2px 3px 28.9px 3px rgba(0, 0, 0, 0.05);
  padding: 50px;
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: box-shadow 0.3s ease;
  /* Responsive width overrides */
}
.sidebar.service {
  display: none;
}
@media (max-width: 768px) {
  .sidebar.service {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .sidebar {
    width: 35%;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    gap: 22px;
    flex-direction: row;
    padding: 32px 20px 24px;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .sidebar {
    padding: 32px 20px 24px;
    gap: 30px;
    overflow-x: auto;
  }
  .sidebar::-webkit-scrollbar {
    display: none;
  }
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  margin: 0;
  padding: 0;
  animation: fadeIn 0.4s ease-out;
  animation-fill-mode: backwards;
}
.sidebar-section:nth-child(1) {
  animation-delay: 0.1s;
}
.sidebar-section:nth-child(2) {
  animation-delay: 0.2s;
}
.sidebar-section:nth-child(3) {
  animation-delay: 0.3s;
}
.sidebar-section.has-border-top {
  padding-top: 32px;
}
.sidebar-section.has-border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #eeeeee;
}
@media (max-width: 768px) {
  .sidebar-section.has-border-top::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .sidebar-section.has-border-top {
    padding-top: 24px;
  }
}
.sidebar-section.customer-service {
  padding-top: 40px;
  gap: 24px;
}
@media (max-width: 768px) {
  .sidebar-section.customer-service {
    padding: 0;
    display: none;
  }
}
.sidebar-section.customer-service.mb {
  display: none;
}
@media (max-width: 768px) {
  .sidebar-section.customer-service.mb {
    display: flex;
    width: 100%;
    background-color: #f4f4f4;
    padding: 32px;
  }
  .sidebar-section.customer-service.mb .sidebar-title {
    display: block;
  }
}
@media (max-width: 480px) {
  .sidebar-section.customer-service {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .sidebar-section {
    gap: 24px;
  }
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.96px;
  line-height: normal;
}
@media (max-width: 768px) {
  .sidebar-title {
    font-size: 20px;
    display: none;
  }
}
@media (max-width: 480px) {
  .sidebar-title {
    font-size: 18px;
  }
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 768px) {
  .sidebar-nav {
    flex-direction: row;
  }
}

.sidebar-nav-item {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  line-height: 1;
  white-space: pre;
  transition: color 0.3s ease;
  cursor: pointer;
}
.sidebar-nav-item:hover {
  color: #ce4257;
}
.sidebar-nav-item.active {
  font-weight: 700;
  color: #ce4257;
}
@media (max-width: 768px) {
  .sidebar-nav-item {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .sidebar-nav-item {
    font-size: 14px;
    gap: 18px;
  }
}

/* ==================== Customer Service Details ==================== */
.service-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  position: relative;
}
.service-item .service-info {
  font-size: 14px;
  color: #333333;
  line-height: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 24px;
  position: relative;
  min-height: 48px;
}
@media (max-width: 480px) {
  .service-item .service-info {
    font-size: 13px;
  }
}
.service-item .service-label {
  display: inline-block;
  width: auto;
  font-weight: 400;
  white-space: nowrap;
}
.service-item .service-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item .service-content p {
  margin: 0;
  padding: 0;
  line-height: 20px;
}
.service-item:first-child .service-content p:first-child {
  margin-top: -1px;
}

/* ==================== Main Content ==================== */
.main-content {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 2px 3px 28.9px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  transition: box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease-out 0.2s;
  animation-fill-mode: backwards;
}
@media (max-width: 768px) {
  .main-content {
    width: 65%;
    max-height: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

.main-content-wrapper {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
@media (max-width: 1024px) {
  .main-content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .main-content-wrapper {
    padding: 0;
    gap: 80px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .main-content-wrapper {
    padding: 0;
    gap: 40px;
  }
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  color: #181818;
  letter-spacing: -1.92px;
  line-height: 1;
  font-family: "Noto Sans KR", sans-serif;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .main-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 36px;
    letter-spacing: -1.44px;
  }
}
@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
    letter-spacing: -1.12px;
  }
}

.content-placeholder {
  width: 100%;
}

@media (max-width: 1024px) {
  .content-scroll-area {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .content-scroll-area {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .content-scroll-area {
    padding: 0;
  }
}

/* ==================== Custom Scrollbar ==================== */
.custom-scrollbar {
  position: absolute;
  right: 60px;
  top: 428px;
  width: 6px;
  height: 228px;
  background-color: transparent;
  border-radius: 5px;
  pointer-events: none;
}
@media (max-width: 480px) {
  .custom-scrollbar {
    right: 20px;
  }
}

.scrollbar-thumb {
  width: 100%;
  height: 100%;
  background-color: #cdcdcd;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* ==================== Animations Keyframes ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================== FAQ Styles ==================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.faq-categories {
  display: flex;
  gap: 0;
  align-items: center;
}
@media (max-width: 480px) {
  .faq-categories {
    overflow-x: auto;
  }
  .faq-categories::-webkit-scrollbar {
    display: none;
  }
}

.faq-category {
  padding: 8px 12px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #9d9d9d;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  white-space: nowrap;
  font-family: "Noto Sans KR", sans-serif;
}
.faq-category:hover {
  color: #ce4257;
}
.faq-category.active {
  background-color: #ce4257;
  color: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 400px; /* 데이터가 적어도 이만큼 높이는 유지 */
  transition: all 0.3s ease;
}

.faq-item {
  width: 100%;
  background: #ffffff;
  opacity: 0; /* 처음에 투명하게 시작 */
  transform: translateY(20px); /* 아래에서 시작 */
  animation: fadeInUp 0.5s ease forwards; /* 애니메이션 적용 */
  /* Hover 상태 */
  /* 펼쳐진(Expanded) 상태 - 화살표 회전 */
}
.faq-item:hover .faq-arrow {
  opacity: 1;
}
.faq-item:hover .faq-arrow path {
  stroke: #ce4257;
}
.faq-item:hover .q-label,
.faq-item:hover .q-text {
  color: #ce4257;
}
.faq-item.expanded .faq-arrow {
  transform: rotate(180deg); /* 180도 회전 */
  opacity: 1;
}
.faq-item.expanded .faq-arrow path {
  stroke: #ce4257;
}
.faq-item.expanded .faq-question {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}
.faq-item.expanded .faq-question .q-label,
.faq-item.expanded .faq-question .q-text {
  color: #ce4257;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  /* 화살표 아이콘 스타일 */
}
@media (max-width: 480px) {
  .faq-question {
    padding: 20px 8px;
  }
}
.faq-question .faq-question-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .faq-question .faq-question-text {
    align-items: flex-start;
  }
}
.faq-question .q-label {
  font-size: 20px;
  font-weight: 600;
  color: #555555;
  line-height: normal;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
@media (max-width: 480px) {
  .faq-question .q-label {
    font-size: 16px;
  }
}
.faq-question .q-text {
  font-size: 16px;
  font-weight: 600;
  color: #555555;
  line-height: normal;
  flex: 1;
  transition: color 0.2s ease;
}
@media (max-width: 480px) {
  .faq-question .q-text {
    font-size: 15px;
  }
}
.faq-question .faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.5;
  transform-origin: center; /* 회전 축 중심 */
  transition: transform 0.3s ease, opacity 0.3s ease; /* 부드러운 애니메이션 */
}
.faq-question .faq-arrow path {
  transition: stroke 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px 0px 24px;
  transition: all 0.3s ease-in-out; /* 펼침 애니메이션 부드럽게 */
}
.faq-answer.show {
  max-height: 1000px;
  padding: 24px 16px 16px 24px;
}
.faq-answer .answer-content {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.faq-answer .answer-content p {
  margin-bottom: 12px;
}
.faq-answer .answer-content p:last-child {
  margin-bottom: 0;
}
.faq-answer .answer-content br {
  display: block;
  content: "";
  margin-top: 4px;
}
.faq-answer .answer-content table {
  border-collapse: collapse;
}
.faq-answer .answer-content table th, .faq-answer .answer-content table td {
  border: 1px solid #ddd; /* 셀 테두리 */
  padding: 8px; /* 셀 안의 여백 */
  text-align: left; /* 텍스트 정렬 */
}
.faq-answer .answer-content table th {
  background-color: #f2f2f2; /* 헤더 배경색 */
}

.faq-divider {
  height: 1px;
  background-color: #e8e8e8;
  width: 100%;
  margin: 0;
  border: none;
}

.faq-search-container {
  position: absolute;
  top: 50px;
  right: 40px;
  width: 100%;
  max-width: 320px;
}
@media (max-width: 1024px) {
  .faq-search-container {
    position: unset;
  }
}

.faq-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 27px;
  transition: all 0.3s ease;
}
.faq-search:focus-within {
  border-color: #ce4257;
}
.faq-search:focus-within .search-icon svg circle {
  stroke: #ce4257;
}
.faq-search:focus-within .search-icon svg path {
  stroke: #ce4257;
}
.faq-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #555555;
  font-family: "Noto Sans KR", sans-serif;
  background: transparent;
}
.faq-search input::placeholder {
  color: #555555;
  opacity: 1;
}
.faq-search .search-icon {
  width: 18.264px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.faq-search .search-icon svg {
  width: 100%;
  height: 100%;
}

/* ==================== Inquiry Styles ==================== */
.inquiry-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.inquiry-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiry-intro .intro-main {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;
}
.inquiry-intro .intro-sub {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  font-weight: 400;
}

.inquiry-divider {
  height: 1px;
  background-color: #d7dedd;
  width: 100%;
}

.inquiry-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 80px 20px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 480px) {
  .inquiry-section {
    padding: 40px 0px;
  }
}

.inquiry-section-title {
  font-size: 21px;
  font-weight: 600;
  color: #333333;
  line-height: 1;
}

.form-field {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 480px) {
  .form-field {
    flex-direction: column;
    gap: 0px;
  }
}
.form-field.content-field {
  align-items: flex-start;
}
.form-field.content-field .field-label {
  padding-top: 10px;
}
.form-field.privacy-field {
  flex-direction: column;
  gap: 16px;
}

.field-label {
  font-size: 13px;
  color: #333333;
  font-weight: 400;
  white-space: nowrap;
  line-height: 40px;
  flex: 1;
}
.field-label.top-aligned {
  line-height: 1.5;
}

.field-content {
  flex: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.field-content.full-width {
  width: 100%;
}

.field-input {
  flex: 1;
  background: #f9f7f3;
  border: none;
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 14px;
  color: #000000;
  font-family: "Noto Sans KR", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  height: 40px;
  min-width: 0;
}
.field-input:focus {
  background: #f5f3ef;
}
.field-input.full {
  width: 100%;
}

.field-select {
  flex: 1;
  background: #f9f7f3;
  border: none;
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 14px;
  color: #807e76;
  font-family: "Noto Sans KR", sans-serif;
  outline: none;
  cursor: pointer;
  height: 40px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L4.5 4.5L8.5 0.5' stroke='%23484747' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 0;
}
.field-select option {
  color: #000000;
}

.email-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.email-separator {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  flex-shrink: 0;
}

.phone-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.phone-separator {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  flex-shrink: 0;
}

.field-hint {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 16px;
  padding-left: 0px;
}

.privacy-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.privacy-title {
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1;
}

.privacy-content {
  background: #f9f7f3;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  max-height: 140px;
  overflow-y: auto;
}
.privacy-content::-webkit-scrollbar {
  width: 6px;
}
.privacy-content::-webkit-scrollbar-track {
  background: transparent;
}
.privacy-content::-webkit-scrollbar-thumb {
  background: #b0b0b0;
  border-radius: 10px;
}
.privacy-content p {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  line-height: 19px;
}

.privacy-agree {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.privacy-checkbox {
  display: none;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(249, 247, 243, 0.1);
  transition: all 0.3s ease;
}
.checkbox-custom::after {
  content: "";
  display: none;
  width: 6px;
  height: 10px;
  border: solid #ce4257;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-checkbox:checked + .checkbox-custom {
  background: #ffffff;
  border-color: #ce4257;
}
.privacy-checkbox:checked + .checkbox-custom::after {
  display: block;
}

.checkbox-text {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 16px;
}

.field-textarea {
  width: 100%;
  min-height: 200px;
  background: #f9f7f3;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  color: #000000;
  font-family: "Noto Sans KR", sans-serif;
  outline: none;
  resize: vertical;
  transition: all 0.3s ease;
}
.field-textarea:focus {
  background: #f5f3ef;
}

.char-count {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 16px;
}

.inquiry-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  width: 418px;
  align-self: flex-end;
  float: right;
  margin-top: 60px;
}
@media (max-width: 480px) {
  .inquiry-actions {
    float: unset;
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }
}

.btn {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 24px;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}

.btn-confirm {
  background: #ce4257;
}
.btn-confirm:hover {
  background: #b93a4d;
}

.btn-cancel {
  background: #888888;
}
.btn-cancel:hover {
  background: #777777;
}

/* ==================== Hover Effects ==================== */
.sidebar {
  transition: box-shadow 0.3s ease;
}

.main-content {
  transition: box-shadow 0.3s ease;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px;
}

/* ==================== Common Styles ==================== */
.membership-content {
  padding: 0 20px;
}
@media (max-width: 480px) {
  .membership-content {
    padding: 0;
  }
}

.membership-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #CE4257;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.membership-section-title.gradient {
  background: linear-gradient(135deg, #FF6B9D 0%, #9B6BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .membership-section-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .membership-section-title {
    font-size: 24px;
  }
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/* ==================== Trust Section ==================== */
.trust-section {
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .trust-section {
    padding: 0px;
  }
}
@media (max-width: 480px) {
  .trust-section {
    padding: 0px 0 40px;
    border-bottom: 1px solid #f0f0f0;
  }
  .trust-section .container {
    width: 100%;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.trust-item .benefit-label-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.trust-item .benefit-label-box .trust-label-order {
  font-size: 14px;
  color: #555;
}
.trust-item .benefit-label-box .trust-label span {
  display: block;
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .trust-item {
    padding: 15px;
    gap: 12px;
  }
}

.trust-icon {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.trust-icon img {
  transform: scale(0.7);
}

.trust-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .trust-label {
    font-size: 14px;
  }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 90px);
  gap: 32px 40px;
  margin: 64px 0 0;
}
@media (max-width: 1280px) {
  .logo-grid {
    grid-template-columns: repeat(4, 70px);
  }
}
@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 70px);
    margin: 40px 0 0;
  }
}
.logo-grid li {
  width: 90px;
  height: 60px;
}
@media (max-width: 1280px) {
  .logo-grid li {
    width: 70px;
    height: 50px;
  }
}
.logo-grid li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==================== Insurance Section ==================== */
.insurance-section {
  padding: 40px 0px 80px;
}
@media (max-width: 768px) {
  .insurance-section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  .insurance-section {
    padding: 40px 0px 0;
  }
}

.insurance-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .insurance-header {
    margin-bottom: 35px;
  }
}
.insurance-header p {
  text-align: center;
  line-height: normal;
  word-break: keep-all;
}

.insurance-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .insurance-title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .insurance-title {
    font-size: 22px;
  }
}

.insurance-sub-title {
  color: #999;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

.insurance-badge {
  padding: 6px 16px;
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8FB3 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}
.insurance-badge.sub {
  text-align: center;
  margin-bottom: 1rem;
  background: #000000;
  box-shadow: none;
  padding: 8px;
}
.insurance-badge.sub-02 {
  text-align: center;
  margin-bottom: 1rem;
  background: #000000;
  box-shadow: none;
  padding: 8px;
  margin-top: 3rem;
}
.insurance-badge.blue {
  background: linear-gradient(135deg, #6BCDFF 0%, #8FD9FF 100%);
  box-shadow: 0 4px 12px rgba(107, 205, 255, 0.3);
}
@media (max-width: 480px) {
  .insurance-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
}

.insurance-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 0px;
}
@media (max-width: 480px) {
  .insurance-content {
    gap: 30px;
    margin-bottom: 0px;
  }
}

.insurance-icon-large svg {
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.insurance-details {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .insurance-details {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .insurance-details {
    padding: 20px;
  }
}

.detail-row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.detail-row:last-child {
  border-bottom: none;
}
@media (max-width: 480px) {
  .detail-row {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }
}

.detail-label {
  font-size: 16px;
  font-weight: 600;
  color: #666;
}
@media (max-width: 480px) {
  .detail-label {
    font-size: 14px;
  }
}

.img-box {
  width: 100%;
  height: 100px;
}
.img-box img {
  width: 100%;
  height: 100%;
  transform: scale(0.8);
}

.detail-value {
  font-size: 20px;
  font-weight: 600;
  color: #FF6B9D;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  .detail-value {
    font-size: 15px;
    text-align: left;
  }
}
.detail-value.second {
  color: #9B6BFF;
}
.detail-value > span {
  font-size: 18px;
}
@media (max-width: 480px) {
  .detail-value > span {
    font-size: 13px;
  }
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cta-button:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .cta-button {
    width: 100%;
    padding: 14px 36px;
    font-size: 16px;
  }
}

.caution {
  width: 100%;
  padding: 30px;
  border-radius: 16px;
  background-color: #f8f9fa;
  margin-top: 80px;
}
@media (max-width: 480px) {
  .caution {
    margin-top: 40px;
  }
}
.caution li {
  line-height: 32px;
}
.caution .caution-tit {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}
.caution .caution-text {
  color: #495057;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .caution .caution-text {
    font-size: 15px;
  }
}

/* ==================== Urgent Section ==================== */
.urgent-section {
  padding: 80px 0px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .urgent-section {
    padding: 60px 0px 0 0;
  }
}
@media (max-width: 480px) {
  .urgent-section {
    padding: 40px 0px 40px;
    margin-top: 40px;
  }
}

.urgent-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .urgent-header {
    margin-bottom: 40px;
  }
}

.urgent-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 480px) {
  .urgent-icon {
    font-size: 48px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.urgent-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .urgent-title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .urgent-title {
    font-size: 22px;
  }
}

.urgent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .urgent-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.urgent-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  gap: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.urgent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
@media (max-width: 480px) {
  .urgent-card {
    padding: 25px;
  }
}

.card-number {
  font-size: 16px;
  font-weight: 700;
  color: #FF6B9D;
}
@media (max-width: 480px) {
  .card-number {
    font-size: 14px;
  }
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .card-title {
    font-size: 20px;
  }
}

.card-desc {
  font-size: 20px;
  color: #666;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .card-desc {
    font-size: 15px;
  }
}
.card-desc > span {
  font-size: 16px;
}

/* ==================== Management Section ==================== */
.management-section {
  padding: 80px 20px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .management-section {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .management-section {
    padding: 40px 0px;
  }
  .management-section .container {
    padding: 0;
  }
}

.management-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .management-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.table-container {
  margin: 0 auto;
  background-color: #ffffff;
}

.table-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 480px) {
  .table-wrapper {
    overflow-x: auto;
  }
}

.point-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
}
@media (max-width: 480px) {
  .point-table {
    min-width: 500px;
  }
}

thead {
  background-color: #f5f5f5;
}

.header-row-1 {
  border-bottom: 1px solid #eeeeee;
}
.header-row-1 .header-cell {
  padding: 16px;
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  border-right: 1px solid #eeeeee;
  white-space: nowrap;
}
.header-row-1 .header-cell:last-child {
  border-right: none;
}
@media (max-width: 480px) {
  .header-row-1 .header-cell {
    padding: 12px 8px;
    font-size: 14px;
  }
}
.header-row-1 .grade-cell {
  text-align: left;
  width: 159.31px;
}
@media (max-width: 480px) {
  .header-row-1 .grade-cell {
    width: 120px;
  }
}
.header-row-1 .points-cell {
  width: 440.69px;
}
@media (max-width: 480px) {
  .header-row-1 .points-cell {
    width: auto;
  }
}

.header-row-2 .header-cell {
  padding: 10.5px 16px;
  font-size: 14px;
  color: #666666;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border-right: 1px solid #eeeeee;
  white-space: nowrap;
}
.header-row-2 .header-cell:last-child {
  border-right: none;
}
@media (max-width: 480px) {
  .header-row-2 .header-cell {
    padding: 8px;
    font-size: 12px;
  }
}
.header-row-2 .empty-cell {
  width: 159.31px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 480px) {
  .header-row-2 .empty-cell {
    width: 120px;
  }
}
.header-row-2 .sub-header {
  border-bottom: 1px solid #eeeeee;
}
.header-row-2 .sub-header:first-of-type {
  width: 198.83px;
}
@media (max-width: 480px) {
  .header-row-2 .sub-header:first-of-type {
    width: auto;
  }
}
.header-row-2 .sub-header:last-child {
  width: 241.86px;
}
@media (max-width: 480px) {
  .header-row-2 .sub-header:last-child {
    width: auto;
  }
}

tbody tr {
  border-bottom: 1px solid #eeeeee;
}
tbody tr.last-row {
  border-bottom: none;
}
tbody tr.last-row td {
  border-bottom: none;
}
tbody td {
  padding: 17.5px 16px;
  font-size: 16px;
  color: #0a0a0a;
  font-weight: 400;
  line-height: 24px;
  border-right: 1px solid #eeeeee;
  vertical-align: middle;
}
tbody td:last-child {
  border-right: none;
}
@media (max-width: 480px) {
  tbody td {
    padding: 14px 8px;
    font-size: 14px;
  }
}

.grade-name {
  text-align: left;
  width: 159.31px;
}
@media (max-width: 480px) {
  .grade-name {
    width: 120px;
  }
}

.point-value {
  font-size: 20px;
  color: #ff6b9d;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 480px) {
  .point-value {
    font-size: 18px;
  }
}

.point-dash {
  text-align: center;
}

@media (max-width: 480px) {
  .table-container {
    padding: 0;
  }
  .table-wrapper {
    border-radius: 8px;
  }
}
.table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

/* ==================== Accommodation Section ==================== */
.accommodation-section {
  padding: 80px 20px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .accommodation-section {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .accommodation-section {
    padding: 40px 0px;
  }
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.accommodation-item {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .accommodation-item {
    padding: 25px;
  }
}

.item-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.item-icon.pink {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFE8F0 100%);
}
.item-icon.purple {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE8FF 100%);
}
.item-icon.blue {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}
@media (max-width: 480px) {
  .item-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.item-content {
  margin-top: 20px;
}

.item-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .item-title {
    font-size: 18px;
  }
}

.item-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .item-desc {
    font-size: 14px;
  }
}

.item-list {
  list-style: none;
  padding: 0;
}
.item-list li {
  font-size: 15px;
  color: #333;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.item-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6BCDFF;
  font-weight: 700;
}
@media (max-width: 480px) {
  .item-list li {
    font-size: 14px;
  }
}

.info-box {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
  border-radius: 16px;
  padding: 30px;
  border-left: 4px solid #FFB86B;
}
@media (max-width: 480px) {
  .info-box {
    padding: 20px;
  }
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .info-title {
    font-size: 16px;
  }
}

.info-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .info-text {
    font-size: 14px;
  }
}

/* ==================== Law Firm Guide Section ==================== */
.lawfirm-section {
  padding: 80px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .lawfirm-section {
    padding: 60px 20px;
  }
}
@media (max-width: 480px) {
  .lawfirm-section {
    padding: 40px 20px;
  }
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.step-item {
  background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .step-item {
    padding: 25px;
  }
}

.step-number {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #9B6BFF 0%, #B88FFF 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .step-number {
    font-size: 12px;
    padding: 5px 12px;
  }
}

.step-content {
  margin-top: 16px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .step-title {
    font-size: 20px;
  }
}

.step-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .step-desc {
    font-size: 14px;
  }
}

.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 12px;
  background: #f0f0f0;
  color: #666;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .tag {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* ==================== Specialized Insurance Section ==================== */
.specialized-section {
  padding: 80px 20px 100px;
  background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
}
@media (max-width: 768px) {
  .specialized-section {
    padding: 60px 20px 80px;
  }
}
@media (max-width: 480px) {
  .specialized-section {
    padding: 40px 20px 60px;
  }
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .specialized-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.specialized-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header {
  padding: 30px;
  text-align: center;
}
.card-header.pink-header {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8FB3 100%);
}
.card-header.purple-header {
  background: linear-gradient(135deg, #9B6BFF 0%, #B88FFF 100%);
}
.card-header.blue-header {
  background: linear-gradient(135deg, #6BCDFF 0%, #8FD9FF 100%);
}
@media (max-width: 480px) {
  .card-header {
    padding: 25px;
  }
}

.time-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .time-card-icon {
    font-size: 36px;
  }
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 480px) {
  .card-title {
    font-size: 20px;
  }
}

.card-body {
  padding: 30px;
}
@media (max-width: 480px) {
  .card-body {
    padding: 25px;
  }
}

.coverage-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.coverage-item:last-of-type {
  border-bottom: none;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .coverage-item {
    padding: 12px 0;
  }
}

.coverage-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}
@media (max-width: 480px) {
  .coverage-label {
    font-size: 14px;
  }
}

.coverage-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}
@media (max-width: 480px) {
  .coverage-value {
    font-size: 15px;
  }
}

.card-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-button.pink {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8FB3 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}
.card-button.purple {
  background: linear-gradient(135deg, #9B6BFF 0%, #B88FFF 100%);
  box-shadow: 0 4px 15px rgba(155, 107, 255, 0.3);
}
.card-button.blue {
  background: linear-gradient(135deg, #6BCDFF 0%, #8FD9FF 100%);
  box-shadow: 0 4px 15px rgba(107, 205, 255, 0.3);
}
@media (max-width: 480px) {
  .card-button {
    padding: 12px;
    font-size: 15px;
  }
}

/* ==================== Contact Section ==================== */
.contact-section {
  margin-top: 60px;
}
@media (max-width: 480px) {
  .contact-section {
    margin-top: 40px;
  }
}

.contact-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .contact-box {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .contact-box {
    padding: 30px 20px;
  }
}

.contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .contact-title {
    font-size: 20px;
  }
}

.contact-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .contact-number {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .contact-number {
    font-size: 30px;
  }
}

.contact-hours {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .contact-hours {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-btn.primary {
  background: #fff;
  color: #1a1a1a;
}
.contact-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
@media (max-width: 480px) {
  .contact-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* ==================== Footer ==================== */
@media (max-width: 480px) {
  .footer {
    padding: 0;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

.footer-info {
  flex: 1;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .footer-logo {
    font-size: 24px;
  }
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 480px) {
  .footer-desc {
    font-size: 14px;
  }
}

.footer-links {
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .footer-link {
    font-size: 14px;
  }
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 480px) {
  .footer-copyright {
    font-size: 13px;
    padding-top: 20px;
  }
}

/* ==================== Page Layout ==================== */
.membership-page {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 2px 3px 28.9px 3px rgba(0, 0, 0, 0.05);
  padding: 60px;
}

/* ==================== Membership Container ==================== */
/* ==================== Membership Container ==================== */
.membership-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.points-accumulation-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

/* ==================== Section Header ==================== */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.section-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #181818;
  line-height: 1.2;
}

.section-description {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
}

/* ==================== Comeback Points Section ==================== */
.comeback-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 80px 20px;
  border-top: 1px solid #f0f0f0;
  align-items: center;
}
@media (max-width: 480px) {
  .comeback-section {
    padding: 40px 0;
  }
}
.comeback-section .caution {
  margin-top: 40px;
}
@media (max-width: 480px) {
  .comeback-section .caution {
    margin-top: 0;
  }
}

.comeback-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.comeback-badge {
  display: inline-flex;
  padding: 6px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
}

.comeback-title {
  font-size: 28px;
  font-weight: 700;
  color: #ce4257;
  line-height: 1.2;
}

.comeback-description {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  text-align: center;
}

.comeback-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 480px) {
  .comeback-methods {
    gap: 16px;
    flex-direction: column;
  }
}

.method-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 160px;
}
@media (max-width: 480px) {
  .method-card {
    min-width: 100%;
    padding: 20px;
  }
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}
.method-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.8);
}

.method-icon svg {
  width: 70px;
  height: 70px;
}

.method-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  line-height: 20px;
  text-align: center;
}

.method-url {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
}

.method-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

.arrow-down {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FAFAFA;
  padding: 6px;
}

.final-step-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 480px) {
  .final-step-box {
    width: 100%;
    padding: 24px;
    gap: 10px;
  }
}

.final-step {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 32px;
  gap: 40px;
  border-radius: 16px;
  border: 1px solid #D46FBD;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .final-step {
    gap: 10px;
    padding: 20px;
  }
}
.final-step .final-step-image {
  width: 100%;
  height: 100px;
  flex: 1;
}
.final-step .final-step-image img {
  object-fit: contain;
  transform: scale(0.7);
}

.step-text {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  flex: 1;
  white-space: nowrap;
}
.step-text span {
  color: #CE4257;
}

/* ==================== Tier Grid ==================== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 1280px) {
  .tier-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tier-grid.second {
  grid-template-columns: repeat(1, 1fr);
}

/* ==================== Tier Card ==================== */
.tier-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Family Tier - Pink */
.tier-card.family-tier {
  border-color: #FF6B9D;
}

/* VIP Tier - Purple */
.tier-card.vip-tier {
  border-color: #9B6BFF;
}

/* VVIP Tier - Blue */
.tier-card.vvip-tier {
  border-color: #6BCDFF;
}

/* VVVIP Tier - Orange */
.tier-card.vvvip-tier {
  border-color: #FFB86B;
}

/* ==================== Tier Card Content ==================== */
.tier-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tier-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.tier-name {
  font-size: 24px;
  font-weight: 700;
  color: #181818;
  line-height: 1.2;
}

.tier-rate {
  font-size: 16px;
  font-weight: 600;
  color: #ce4257;
  line-height: 1.2;
}

.tier-body {
  padding-top: 8px;
  border-top: 1px solid #eeeeee;
}

.tier-condition {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.membership-page {
  animation: fadeIn 0.5s ease-out;
}

.tier-card {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: backwards;
}

.tier-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tier-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tier-card:nth-child(3) {
  animation-delay: 0.3s;
}

.tier-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ==================== CSS Variables ==================== */
:root {
  --primary-color: #ce4257;
  --primary-light: #e91e63;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-gray: #666666;
  --border-color: #ce4257;
  --bg-white: #ffffff;
  --bg-cream: #f9f7f3;
  --bg-light-pink: #ffe5f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ==================== Page Layout ==================== */
.points-guide-page {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-cream);
  padding: 0;
}

.points-guide-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

/* ==================== Section Header ==================== */
.section-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.header-decoration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-decoration-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.emoji-deco {
  font-size: 32px;
}
.emoji-deco.donut {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}
.emoji-deco.star {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}
.emoji-deco.bell {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}
.emoji-deco.question {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}
.emoji-deco.circle {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff9ec8 0%, #ff6b9d 100%);
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(255, 107, 157, 0.3);
}

.membership-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.5px;
}

/* ==================== Guide Section ==================== */
.guide-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 80px 20px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 480px) {
  .guide-section {
    padding: 40px 0px;
  }
}

.guide-content-box {
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  border: 2px solid #F0F0F0;
  background: #FFF;
  word-break: keep-all;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.guide-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.8;
  border-bottom: 1px solid #F5F5F5;
  padding-bottom: 12px;
}
.guide-item .bullet {
  color: #CE4257;
  font-size: 16px;
}
.guide-item .text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
}
.guide-item .text strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* ==================== Inquiry Section ==================== */
.inquiry-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.inquiry-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.inquiry-card {
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.time-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}
@media (max-width: 480px) {
  .time-card-icon {
    margin-bottom: 0;
  }
}
.time-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.8);
}
@media (max-width: 480px) {
  .time-card-icon img {
    transform: scale(0.6);
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (max-width: 480px) {
  .card-content {
    gap: 0 !important;
  }
}

/* Phone Card */
.phone-card .phone-number {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 24px;
}
.phone-card .phone-number.free {
  margin-bottom: 4px;
}
.phone-card .phone-number .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  margin-left: 6px;
}

/* Time Card */
.time-card .time-info {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 24px;
}
.time-card .time-info.main {
  margin-bottom: 4px;
}
.time-card .time-info.sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
}

/* ==================== Responsive Design ==================== */
/* Tablet - 1024px */
@media (max-width: 1024px) {
  .membership-section-title {
    font-size: 32px;
  }
  .guide-content-box {
    padding: 36px 40px;
  }
  .emoji-deco {
    font-size: 28px;
  }
  .emoji-deco.circle {
    width: 24px;
    height: 24px;
  }
}
/* Tablet - 768px */
@media (max-width: 768px) {
  .points-guide-container {
    gap: 48px;
  }
  .membership-section-title {
    font-size: 28px;
  }
  .emoji-deco {
    font-size: 24px;
  }
  .emoji-deco.circle {
    width: 20px;
    height: 20px;
  }
  .guide-content-box {
    padding: 32px 28px;
  }
  .guide-item .text {
    font-size: 15px;
  }
  .inquiry-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .inquiry-card {
    padding: 36px 28px;
  }
}
/* Mobile - 480px */
@media (max-width: 480px) {
  .points-guide-container {
    gap: 40px;
  }
  .section-header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }
  .membership-section-title {
    font-size: 24px;
    width: 100%;
    order: 2;
  }
  .header-decoration {
    order: 1;
  }
  .header-decoration-right {
    order: 3;
    gap: 8px;
  }
  .emoji-deco {
    font-size: 20px;
  }
  .emoji-deco.circle {
    width: 18px;
    height: 18px;
  }
  .guide-content-box {
    padding: 24px 20px;
    border-width: 3px;
    margin-top: 1rem;
  }
  .guide-list {
    gap: 16px;
  }
  .guide-item {
    gap: 8px;
  }
  .guide-item .bullet {
    font-size: 14px;
  }
  .guide-item .text {
    font-size: 14px;
    line-height: 1.7;
  }
  .inquiry-card {
    padding: 32px 24px;
    gap: 20px;
  }
  .time-card-icon svg {
    width: 70px;
    height: 70px;
  }
  .phone-card .phone-number {
    font-size: 16px;
  }
  .phone-card .phone-number .label {
    font-size: 13px;
  }
  .time-card .time-info {
    font-size: 16px;
  }
  .time-card .time-info.sub {
    font-size: 14px;
  }
}
/* ==================== Animations ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.guide-section {
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: backwards;
  animation-delay: 0.1s;
}

.inquiry-section {
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: backwards;
  animation-delay: 0.3s;
}

.guide-item {
  animation: fadeInUp 0.4s ease;
  animation-fill-mode: backwards;
}
.guide-item:nth-child(1) {
  animation-delay: 0.25s;
}
.guide-item:nth-child(2) {
  animation-delay: 0.3s;
}
.guide-item:nth-child(3) {
  animation-delay: 0.35s;
}
.guide-item:nth-child(4) {
  animation-delay: 0.4s;
}
.guide-item:nth-child(5) {
  animation-delay: 0.45s;
}
.guide-item:nth-child(6) {
  animation-delay: 0.5s;
}
.guide-item:nth-child(7) {
  animation-delay: 0.55s;
}

.inquiry-card {
  animation: fadeInUp 0.5s ease;
  animation-fill-mode: backwards;
}
.inquiry-card:nth-child(1) {
  animation-delay: 0.5s;
}
.inquiry-card:nth-child(2) {
  animation-delay: 0.6s;
}

.membership-highlight {
  color: #ce4257;
  font-weight: 700;
}

/* ==================== Terms Section ==================== */
.terms-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px 0;
}
@media (max-width: 480px) {
  .terms-section {
    padding: 0;
  }
}

.terms-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (max-width: 480px) {
  .terms-container {
    padding: 0;
  }
}

.terms-button {
  background: #f9f7f3;
  border: none;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width: 480px) {
  .terms-button {
    padding: 20px 12px;
  }
}

.terms-button:hover {
  background: #f5f0ea;
}

.terms-button:active {
  transform: translateY(0);
}

.terms-text {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 480px) {
  .terms-text {
    font-size: 14px;
  }
}

.terms-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(270deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.terms-arrow svg {
  width: 14px;
  height: 7px;
}

.main-content-wrapper.terms {
  gap: 64px;
}

.terms-view-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: #333;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .terms-container {
    padding: 0 !important;
  }
}
.terms-container .terms-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #333;
  color: #000;
}
@media (max-width: 480px) {
  .terms-container .terms-title {
    font-size: 24px;
  }
}
.terms-container .terms-content {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .terms-container .terms-content {
    padding: 0;
  }
}
.terms-container .text-right {
  text-align: right;
}
.terms-container .font-bold {
  font-weight: 700;
}
.terms-container .terms-table.consent-table th {
  width: 30%;
  background-color: #f5f5f5;
  vertical-align: middle;
  text-align: left;
  padding-left: 20px;
}
.terms-container .terms-table.consent-table td {
  width: 70%;
  text-align: left;
  padding: 15px 20px;
  line-height: 1.6;
}
.terms-container .terms-article {
  margin-bottom: 40px;
}
.terms-container .terms-article .article-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  background-color: #f9f9f9;
  padding: 10px 15px;
  border-radius: 4px;
}
.terms-container .terms-article .article-text {
  margin-bottom: 15px;
  padding-left: 5px;
  word-break: keep-all;
  font-size: 15px;
}
.terms-container .terms-article .article-text.font-bold {
  font-weight: 700;
}
.terms-container .terms-article .article-text.note {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}
.terms-container .terms-article .article-text.mt-20 {
  margin-top: 20px;
}
.terms-container .terms-article .terms-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.terms-container .terms-article .terms-list li {
  padding-left: 22px;
  text-indent: -22px;
  margin-bottom: 5px;
  word-break: keep-all;
}
.terms-container .terms-article .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}
.terms-container .terms-article .table-wrapper .terms-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #333;
  font-size: 14px;
}
.terms-container .terms-article .table-wrapper .terms-table th, .terms-container .terms-article .table-wrapper .terms-table td {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 12px 10px;
  text-align: center;
  word-break: keep-all;
}
.terms-container .terms-article .table-wrapper .terms-table th:first-child, .terms-container .terms-article .table-wrapper .terms-table td:first-child {
  border-left: none;
}
.terms-container .terms-article .table-wrapper .terms-table th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #000;
}
.terms-container .terms-article .table-wrapper .terms-table td {
  text-align: left;
  line-height: 1.5;
}
.terms-container .terms-article .table-wrapper .terms-table.contact-table th {
  width: 20%;
  background-color: #f9f9f9;
}
.terms-container .terms-article .table-wrapper .terms-table.contact-table td {
  width: 30%;
}
.terms-container .terms-addendum {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.terms-container .terms-addendum .previous-terms {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.terms-container .terms-addendum .previous-terms h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
.terms-container .terms-addendum .previous-terms ul {
  list-style: none;
  padding: 0;
}
.terms-container .terms-addendum .previous-terms ul li {
  margin-bottom: 5px;
}
.terms-container .terms-addendum .previous-terms ul li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.terms-container .terms-addendum .previous-terms ul li a:hover {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-container .terms-table.consent-table th, .terms-container .terms-table.consent-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .terms-container .terms-table.consent-table th {
    background-color: #eee;
    border-bottom: none;
  }
  .terms-container .terms-table.consent-table td {
    border-left: none;
    padding-top: 10px;
  }
}
.main-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 122px);
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #222222;
  overflow: hidden;
  margin-top: 0;
}
@media (max-width: 480px) {
  .hero-section {
    height: 80vh;
  }
}
@media screen and (max-width: 320px) {
  .hero-section {
    height: 100vh;
  }
}
.hero-section .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.hero-section .hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-section .hero-slide .hero-bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%) !important;
}
.hero-section .hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}
.hero-section .hero-slide .hero-content {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
}
.hero-section .hero-slide .hero-content .hero-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 81px;
  letter-spacing: -1.8px;
  color: white;
  animation: fadeInUp 0.8s ease-out;
  position: absolute;
  bottom: 200px;
  left: 40px;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .hero-section .hero-slide .hero-content .hero-title {
    font-size: 48px;
    line-height: 64px;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-slide .hero-content .hero-title {
    font-size: 32px;
    line-height: 42px;
    bottom: 170px;
    left: 24px;
  }
}
@media screen and (max-width: 320px) {
  .hero-section .hero-slide .hero-content .hero-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.hero-section .pagination-wrap {
  max-width: 1440px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-pagination {
  position: absolute;
  left: 40px;
  bottom: 100px;
  display: flex;
  gap: 22px;
  align-items: center;
  z-index: 10;
}
@media (max-width: 480px) {
  .hero-section .hero-pagination {
    left: 24px;
  }
}
.hero-section .hero-pagination .pagination-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .hero-section .hero-pagination .pagination-arrow {
    width: 32px;
    height: 32px;
  }
}
.hero-section .hero-pagination .pagination-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-section .hero-pagination .pagination-arrow:active {
  transform: scale(0.95);
}
.hero-section .hero-pagination .pagination-arrow svg {
  width: 6px;
  height: 10px;
}
.hero-section .hero-pagination .pagination-content {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-section .hero-pagination .pagination-content .pagination-number {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.6px;
  color: white;
}
@media (max-width: 480px) {
  .hero-section .hero-pagination .pagination-content .pagination-number {
    font-size: 1rem;
  }
}
.hero-section .hero-pagination .pagination-content .pagination-line {
  position: relative;
  width: 139px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero-section .hero-pagination .pagination-content .pagination-line {
    width: 100px;
  }
}
.hero-section .hero-pagination .pagination-content .pagination-line .pagination-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stories-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
@media (max-width: 480px) {
  .stories-section {
    gap: 56px;
  }
}
.stories-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .stories-section .section-header {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .stories-section .section-header {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .stories-section .section-header {
    gap: 20px;
  }
}
.stories-section .section-header .section-title-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
.stories-section .section-header .section-title-wrapper .section-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: -1.5px;
  color: black;
  word-break: keep-all;
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .stories-section .section-header .section-title-wrapper .section-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .stories-section .section-header .section-title-wrapper .section-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .stories-section .section-header .section-title-wrapper .section-title {
    font-size: 28px;
  }
}
.stories-section .section-header .section-title-wrapper .section-title .only-sm {
  display: none;
}
@media (max-width: 768px) {
  .stories-section .section-header .section-title-wrapper .section-title .only-sm {
    display: block;
  }
}
.stories-section .section-header .section-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.66px;
  color: #4d4d4d;
  text-align: center;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .stories-section .section-header .section-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .stories-section .section-header .section-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .stories-section .section-header .section-subtitle {
    font-size: 16px;
  }
}
.stories-section .section-header .section-subtitle .only-sm {
  display: none;
}
@media (max-width: 768px) {
  .stories-section .section-header .section-subtitle .only-sm {
    display: block;
  }
}
.stories-section .stories-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
@media (max-width: 768px) {
  .stories-section .stories-grid {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .stories-section .stories-grid {
    flex-direction: column;
  }
}
.stories-section .stories-grid .story-card {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card {
    min-height: 200px;
  }
}
.stories-section .stories-grid .story-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card img {
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
}
.stories-section .stories-grid .story-card .story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}
.stories-section .stories-grid .story-card .story-content {
  position: absolute;
  left: 44px;
  bottom: 80px;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 512px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
@media (max-width: 768px) {
  .stories-section .stories-grid .story-card .story-content {
    left: 24px;
    bottom: 40px;
  }
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card .story-content {
    width: auto;
    opacity: 1;
    left: 24px;
    bottom: 40px;
  }
}
.stories-section .stories-grid .story-card .story-content h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: -1.5px;
  color: white;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .stories-section .stories-grid .story-card .story-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card .story-content h3 {
    font-size: 32px;
  }
}
.stories-section .stories-grid .story-card .story-content .story-arrow {
  width: 40px;
  height: 40px;
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .stories-section .stories-grid .story-card .story-content .story-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card .story-content .story-arrow {
    width: 28px;
    height: 28px;
  }
}
.stories-section .stories-grid .story-card .story-content .story-arrow svg {
  width: 100%;
  height: 100%;
}
.stories-section .stories-grid .story-card:not(.active):hover .story-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.stories-section .stories-grid .story-card.active .story-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.stories-section .stories-grid .story-card-large {
  flex: 4;
}
@media (max-width: 768px) {
  .stories-section .stories-grid .story-card-large {
    flex: 2;
  }
}
@media (max-width: 480px) {
  .stories-section .stories-grid .story-card-large {
    flex: 1;
  }
}
.stories-section .stories-grid .story-card-large img {
  left: 0;
  top: 0;
  width: 1066px;
  height: 711px;
}
.stories-section .stories-grid .story-card-small {
  flex: 1;
}
.stories-section .stories-grid .story-card-small:nth-child(1) img {
  left: 0;
  top: 0;
  width: -439px;
  height: 711px;
}
.stories-section .stories-grid .story-card-small:nth-child(2) img {
  left: -106px;
  top: 0;
  width: 398px;
  height: 711px;
}
.stories-section .stories-grid .story-card-small:nth-child(3) img {
  left: -280px;
  top: 0;
  width: 745px;
  height: 711px;
}
.stories-section .stories-grid .story-card-small:nth-child(4) img {
  left: -238px;
  top: 0;
  width: 662px;
  height: 711px;
}

@media (max-width: 480px) {
  .season-section {
    padding: 0 20px;
  }
}
.season-section .season-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .season-section .season-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
}
.season-section .season-content .season-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 2;
}
@media (max-width: 1280px) {
  .season-section .season-content .season-text {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .season-section .season-content .season-text {
    gap: 32px;
    flex: unset;
  }
}
.season-section .season-content .season-text .season-title-wrapper {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.season-section .season-content .season-text .season-title-wrapper .season-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: -1.5px;
  color: black;
  line-height: normal;
}
@media (max-width: 1280px) {
  .season-section .season-content .season-text .season-title-wrapper .season-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-title-wrapper .season-title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .season-section .season-content .season-text .season-title-wrapper .season-title {
    font-size: 28px;
  }
}
.season-section .season-content .season-text .season-title-wrapper .season-arrow {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-title-wrapper .season-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .season-section .season-content .season-text .season-title-wrapper .season-arrow {
    width: 28px;
    height: 28px;
  }
}
.season-section .season-content .season-text .season-title-wrapper .season-arrow svg {
  width: 100%;
  height: 100%;
}
.season-section .season-content .season-text .season-description {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.66px;
  color: #4d4d4d;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .season-section .season-content .season-text .season-description {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-description {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .season-section .season-content .season-text .season-description {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1280px) {
  .season-section .season-content .season-text .season-description .only-md {
    display: block;
  }
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-description .only-md {
    display: none;
  }
}
.season-section .season-content .season-text .season-brands {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-brands {
    flex-direction: row;
    gap: 24px;
  }
}
.season-section .season-content .season-text .season-brands .brand-item {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.6px;
  color: #bbbbbd;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  position: relative;
  background-image: none;
  border: none;
  background: none;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 1280px) {
  .season-section .season-content .season-text .season-brands .brand-item {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .season-section .season-content .season-text .season-brands .brand-item {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .season-section .season-content .season-text .season-brands .brand-item {
    font-size: 14px;
  }
}
.season-section .season-content .season-text .season-brands .brand-item.brand-active {
  color: black;
  font-weight: 700;
}
.season-section .season-content .season-text .season-brands .brand-item.brand-active::before {
  content: "";
  display: block;
  position: absolute;
  right: -10px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a77758;
}

.season-image {
  flex: 3;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  max-height: 600px;
  position: relative;
  height: 600px;
}
@media (max-width: 768px) {
  .season-image {
    flex: unset;
    height: 370px;
    width: 100%;
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .season-image {
    height: 230px;
  }
}
.season-image__contents {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.season-image__contents.active {
  opacity: 1;
}

.main-news-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  margin: auto;
}
@media (max-width: 480px) {
  .main-news-section {
    gap: 56px;
  }
}
.main-news-section .main-news-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-header {
    gap: 32px;
  }
}
.main-news-section .main-news-header .main-news-title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .main-news-section .main-news-header .main-news-title-wrapper {
    align-items: flex-start;
  }
}
.main-news-section .main-news-header .main-news-title-wrapper .main-news-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: -1.5px;
  color: black;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-title {
    font-size: 32px;
    text-align: center;
    line-height: normal;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-title {
    font-size: 28px;
  }
}
.main-news-section .main-news-header .main-news-title-wrapper .main-news-title .only-sm {
  display: none;
}
@media (max-width: 480px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-title .only-sm {
    display: block;
  }
}
.main-news-section .main-news-header .main-news-title-wrapper .main-news-arrow {
  width: 40px;
  height: 40px;
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-header .main-news-title-wrapper .main-news-arrow {
    width: 28px;
    height: 28px;
    transform: translateY(-2px);
  }
}
.main-news-section .main-news-header .main-news-title-wrapper .main-news-arrow svg {
  width: 100%;
  height: 100%;
}
.main-news-section .main-news-header .main-news-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.66px;
  color: #4d4d4d;
  text-align: center;
  text-transform: uppercase;
  line-height: normal;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-header .main-news-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main-news-section .main-news-header .main-news-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-header .main-news-subtitle {
    font-size: 16px;
  }
}
.main-news-section .main-news-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-grid {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
}
.main-news-section .main-news-grid .main-news-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  flex: 1;
}
@media (max-width: 480px) {
  .main-news-section .main-news-grid .main-news-card {
    gap: 16px;
    width: 100%;
  }
}
.main-news-section .main-news-grid .main-news-card .main-news-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 40px;
  background: #797979;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-image {
    height: 200px;
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-image {
    height: 140px;
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-image {
    height: 240px;
  }
}
.main-news-section .main-news-grid .main-news-card .main-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.95);
}
.main-news-section .main-news-grid .main-news-card .main-news-tag {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.66px;
  color: #a86b6b;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-grid .main-news-card .main-news-tag {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main-news-section .main-news-grid .main-news-card .main-news-tag {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-grid .main-news-card .main-news-tag {
    font-size: 16px;
  }
}
.main-news-section .main-news-grid .main-news-card .main-news-card-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.66px;
  color: black;
  line-height: 32px;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .main-news-section .main-news-grid .main-news-card .main-news-card-title {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 1024px) {
  .only-xl {
    display: none;
  }
}

@media (max-width: 1280px) {
  .only-lg {
    display: none;
  }
}

@media (max-width: 768px) {
  .only-md {
    display: none;
  }
}

@media (max-width: 480px) {
  .only-sm {
    display: none;
  }
}

.core-value-section {
  width: 100%;
  padding: 80px 0 120px;
  background: white;
}
.core-value-section .core-value-container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
}
.core-value-section .core-value-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.core-value-section .core-value-container .section-header .section-category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #999;
  text-transform: capitalize;
}
.core-value-section .core-value-container .section-header .section-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: black;
}
@media (max-width: 1280px) {
  .core-value-section .core-value-container .section-header .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .core-value-section .core-value-container .section-header .section-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .core-value-section .core-value-container .section-header .section-title {
    font-size: 20px;
  }
}
.core-value-section .core-value-container .core-value-cards {
  display: flex;
  gap: 48px;
  width: 100%;
}
.core-value-section .core-value-container .core-value-cards .core-value-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-image {
  width: 220px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content {
    align-items: center;
  }
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: black;
  text-transform: uppercase;
  line-height: normal;
}
@media (max-width: 768px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-title {
    font-size: 18px;
  }
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.54px;
  color: #333333;
  text-transform: uppercase;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-text {
    text-align: center;
    line-height: 28px;
    font-size: 18px;
  }
}
.core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content .core-value-text p {
  margin: 0;
}

.vision-section {
  width: 100%;
  padding: 80px 0 120px;
}
.vision-section .vision-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .vision-section .vision-container {
    max-width: 640px;
  }
}
.vision-section .vision-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.vision-section .vision-container .section-header .section-category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #737373;
  text-transform: capitalize;
}
.vision-section .vision-container .section-header .section-title {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: black;
}
@media (max-width: 1280px) {
  .vision-section .vision-container .section-header .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .vision-section .vision-container .section-header .section-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .vision-section .vision-container .section-header .section-title {
    font-size: 20px;
  }
}
.vision-section .vision-container .vision-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
.vision-section .vision-container .vision-cards-grid .vision-card {
  background: #fff5f4;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 480px) {
  .vision-section .vision-container .vision-cards-grid .vision-card {
    padding: 32px;
    gap: 16px;
  }
}
.vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header .vision-card-tag {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.64px;
  color: lightcoral;
  line-height: 1;
}
@media (max-width: 480px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header .vision-card-tag {
    margin-bottom: 6px;
  }
}
.vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header .vision-card-title {
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: black;
  text-transform: uppercase;
  line-height: 32px;
}
@media (max-width: 768px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header .vision-card-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header .vision-card-title {
    font-size: 18px;
  }
}
.vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #333333;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content {
    font-size: 16px;
    line-height: 28px;
  }
}
.vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content p {
  margin: 0;
}

.talent-section {
  width: 100%;
  padding: 80px 0 120px;
  background: white;
  margin-bottom: 80px;
}
.talent-section .talent-container {
  margin: 0 auto;
  padding: 0 180px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.talent-section .talent-container .section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}
.talent-section .talent-container .section-header .section-category {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #999;
  white-space: pre;
}
.talent-section .talent-container .talent-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1190px;
}
.talent-section .talent-container .talent-items .talent-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  position: relative;
}
.talent-section .talent-container .talent-items .talent-item::after {
  content: "";
  display: block;
  position: absolute;
  left: 200px;
  right: 540px;
  min-width: 44px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='396' height='11' viewBox='0 0 402 11' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M390.667 5.33333C390.667 8.27885 393.054 10.6667 396 10.6667C398.946 10.6667 401.333 8.27885 401.333 5.33333C401.333 2.38781 398.946 1.58946e-07 396 1.58946e-07C393.054 1.58946e-07 390.667 2.38781 390.667 5.33333ZM0 5.33333V6.33333H1.98V5.33333V4.33333H0V5.33333ZM5.94 5.33333V6.33333H9.9V5.33333V4.33333H5.94V5.33333ZM13.86 5.33333V6.33333H17.82V5.33333V4.33333H13.86V5.33333ZM21.78 5.33333V6.33333H25.74V5.33333V4.33333H21.78V5.33333ZM29.7 5.33333V6.33333H33.66V5.33333V4.33333H29.7V5.33333ZM37.62 5.33333V6.33333H41.58V5.33333V4.33333H37.62V5.33333ZM45.54 5.33333V6.33333H49.5V5.33333V4.33333H45.54V5.33333ZM53.46 5.33333V6.33333H57.42V5.33333V4.33333H53.46V5.33333ZM61.38 5.33333V6.33333H65.34V5.33333V4.33333H61.38V5.33333ZM69.3 5.33333V6.33333H73.26V5.33333V4.33333H69.3V5.33333ZM77.22 5.33333V6.33333H81.18V5.33333V4.33333H77.22V5.33333ZM85.14 5.33333V6.33333H89.1V5.33333V4.33333H85.14V5.33333ZM93.06 5.33333V6.33333H97.02V5.33333V4.33333H93.06V5.33333ZM100.98 5.33333V6.33333H104.94V5.33333V4.33333H100.98V5.33333ZM108.9 5.33333V6.33333H112.86V5.33333V4.33333H108.9V5.33333ZM116.82 5.33333V6.33333H120.78V5.33333V4.33333H116.82V5.33333ZM124.74 5.33333V6.33333H128.7V5.33333V4.33333H124.74V5.33333ZM132.66 5.33333V6.33333H136.62V5.33333V4.33333H132.66V5.33333ZM140.58 5.33333V6.33333H144.54V5.33333V4.33333H140.58V5.33333ZM148.5 5.33333V6.33333H152.46V5.33333V4.33333H148.5V5.33333ZM156.42 5.33333V6.33333H160.38V5.33333V4.33333H156.42V5.33333ZM164.34 5.33333V6.33333H168.3V5.33333V4.33333H164.34V5.33333ZM172.26 5.33333V6.33333H176.22V5.33333V4.33333H172.26V5.33333ZM180.18 5.33333V6.33333H184.14V5.33333V4.33333H180.18V5.33333ZM188.1 5.33333V6.33333H192.06V5.33333V4.33333H188.1V5.33333ZM196.02 5.33333V6.33333H199.98V5.33333V4.33333H196.02V5.33333ZM203.94 5.33333V6.33333H207.9V5.33333V4.33333H203.94V5.33333ZM211.86 5.33333V6.33333H215.82V5.33333V4.33333H211.86V5.33333ZM219.78 5.33333V6.33333H223.74V5.33333V4.33333H219.78V5.33333ZM227.7 5.33333V6.33333H231.66V5.33333V4.33333H227.7V5.33333ZM235.62 5.33333V6.33333H239.58V5.33333V4.33333H235.62V5.33333ZM243.54 5.33333V6.33333H247.5V5.33333V4.33333H243.54V5.33333ZM251.46 5.33333V6.33333H255.42V5.33333V4.33333H251.46V5.33333ZM259.38 5.33333V6.33333H263.34V5.33333V4.33333H259.38V5.33333ZM267.3 5.33333V6.33333H271.26V5.33333V4.33333H267.3V5.33333ZM275.22 5.33333V6.33333H279.18V5.33333V4.33333H275.22V5.33333ZM283.14 5.33333V6.33333H287.1V5.33333V4.33333H283.14V5.33333ZM291.06 5.33333V6.33333H295.02V5.33333V4.33333H291.06V5.33333ZM298.98 5.33333V6.33333H302.94V5.33333V4.33333H298.98V5.33333ZM306.9 5.33333V6.33333H310.86V5.33333V4.33333H306.9V5.33333ZM314.82 5.33333V6.33333H318.78V5.33333V4.33333H314.82V5.33333ZM322.74 5.33333V6.33333H326.7V5.33333V4.33333H322.74V5.33333ZM330.66 5.33333V6.33333H334.62V5.33333V4.33333H330.66V5.33333ZM338.58 5.33333V6.33333H342.54V5.33333V4.33333H338.58V5.33333ZM346.5 5.33333V6.33333H350.46V5.33333V4.33333H346.5V5.33333ZM354.42 5.33333V6.33333H358.38V5.33333V4.33333H354.42V5.33333ZM362.34 5.33333V6.33333H366.3V5.33333V4.33333H362.34V5.33333ZM370.26 5.33333V6.33333H374.22V5.33333V4.33333H370.26V5.33333ZM378.18 5.33333V6.33333H382.14V5.33333V4.33333H378.18V5.33333ZM386.1 5.33333V6.33333H390.06V5.33333V4.33333H386.1V5.33333ZM394.02 5.33333V6.33333H396V5.33333V4.33333H394.02V5.33333Z' fill='%23F08080'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .talent-section .talent-container .talent-items .talent-item::after {
    display: none;
  }
}
.talent-section .talent-container .talent-items .talent-item .talent-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.talent-section .talent-container .talent-items .talent-item .talent-badge span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: white;
  text-transform: uppercase;
  white-space: pre;
  line-height: 1;
  position: absolute;
}
.talent-section .talent-container .talent-items .talent-item .talent-badge.talent-badge-solid {
  background: lightcoral;
}
.talent-section .talent-container .talent-items .talent-item .talent-badge.talent-badge-light {
  background: rgba(240, 128, 128, 0.5);
}
.talent-section .talent-container .talent-items .talent-item .talent-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
  width: 500px;
}
.talent-section .talent-container .talent-items .talent-item .talent-content .talent-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.72px;
  color: black;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-title {
    font-size: 18px;
  }
}
.talent-section .talent-container .talent-items .talent-item .talent-content .talent-text {
  width: 480px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #333333;
  text-transform: uppercase;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-text {
    font-size: 16px;
  }
}
.talent-section .talent-container .talent-items .talent-item .talent-content .talent-text p {
  margin: 0;
}
@media (max-width: 700px) {
  .talent-section .talent-container .talent-items .talent-item {
    flex-direction: column;
    align-items: center;
  }
  .talent-section .talent-container .talent-items .talent-item::after {
    display: none;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content {
    width: 100%;
    text-align: center;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-text {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .sub-visual .sub-visual-container {
    gap: 24px;
  }
  .vision-section {
    padding: 64px 0 100px;
  }
  .vision-section .vision-container {
    padding: 0 56px;
    gap: 48px;
  }
  .vision-section .vision-container .section-header .section-category {
    font-size: 20px;
  }
  .talent-section {
    padding: 64px 0 100px;
  }
  .talent-section .talent-container {
    padding: 0 56px;
    gap: 48px;
  }
  .talent-section .talent-container .section-header .section-category {
    font-size: 20px;
  }
  .talent-section .talent-container .talent-items {
    gap: 32px;
  }
  .talent-section .talent-container .talent-items .talent-item {
    gap: 32px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge {
    width: 160px;
    height: 160px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge span {
    font-size: 20px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-divider {
    width: 300px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content {
    gap: 12px;
  }
  .core-value-section {
    padding: 0px 0 100px;
  }
  .core-value-section .core-value-container {
    padding: 0 56px;
    gap: 48px;
  }
  .core-value-section .core-value-container .section-header .section-category {
    font-size: 20px;
  }
  .core-value-section .core-value-container .core-value-cards {
    gap: 20px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card {
    gap: 24px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-image {
    width: 240px;
    height: 240px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .sub-visual .sub-visual-container {
    gap: 20px;
  }
  .sub-visual .sub-visual-container .breadcrumb {
    font-size: 11px;
  }
  .sub-visual .sub-visual-container .page-category {
    font-size: 20px;
  }
  .vision-section {
    padding: 64px 0 80px;
  }
  .vision-section .vision-container {
    padding: 0 30px;
    gap: 40px;
  }
  .vision-section .vision-container .section-header .section-category {
    font-size: 18px;
  }
  .vision-section .vision-container .vision-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .vision-section .vision-container .vision-cards-grid .vision-card {
    padding: 28px;
    gap: 18px;
  }
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header {
    gap: 10px;
  }
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content p {
    word-break: keep-all;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-content p .only-md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .talent-section {
    padding: 64px 0 80px;
  }
  .talent-section .talent-container {
    padding: 0 30px;
    gap: 40px;
  }
  .talent-section .talent-container .section-header .section-category {
    font-size: 18px;
  }
  .talent-section .talent-container .talent-items {
    gap: 32px;
  }
  .talent-section .talent-container .talent-items .talent-item {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge {
    width: 120px;
    height: 120px;
    transform: scale(0.8);
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge span {
    font-size: 18px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-divider {
    display: none;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content {
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content .talent-text {
    width: 100%;
    max-width: 500px;
  }
  .core-value-section {
    padding: 64px 0 80px;
  }
  .core-value-section .core-value-container {
    padding: 0 30px;
    gap: 40px;
  }
  .core-value-section .core-value-container .section-header .section-category {
    font-size: 18px;
  }
  .core-value-section .core-value-container .core-value-cards {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .core-value-section .core-value-container .core-value-cards {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .core-value-section .core-value-container .core-value-cards .core-value-card {
    gap: 20px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-image {
    width: 200px;
    height: 200px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content {
    gap: 14px;
  }
}
@media screen and (max-width: 480px) {
  .vision-section .vision-container {
    padding: 0 20px;
    gap: 32px;
  }
  .vision-section .vision-container .section-header .section-category {
    font-size: 16px;
  }
  .vision-section .vision-container .vision-cards-grid {
    gap: 12px;
  }
  .vision-section .vision-container .vision-cards-grid .vision-card .vision-card-header {
    gap: 8px;
  }
  .talent-section .talent-container {
    padding: 0 20px;
    gap: 32px;
  }
  .talent-section .talent-container .section-header .section-category {
    font-size: 16px;
  }
  .talent-section .talent-container .talent-items {
    gap: 28px;
  }
  .talent-section .talent-container .talent-items .talent-item {
    flex-direction: column;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge {
    width: 120px;
    height: 120px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-badge span {
    font-size: 16px;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-divider {
    display: none;
  }
  .talent-section .talent-container .talent-items .talent-item .talent-content {
    gap: 10px;
  }
  .core-value-section .core-value-container {
    padding: 0 20px;
    gap: 32px;
  }
  .core-value-section .core-value-container .section-header {
    align-items: center;
    text-align: center;
  }
  .core-value-section .core-value-container .section-header .section-category {
    font-size: 16px;
  }
  .core-value-section .core-value-container .core-value-cards {
    gap: 32px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card {
    gap: 18px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-image {
    width: 180px;
    height: 180px;
  }
  .core-value-section .core-value-container .core-value-cards .core-value-card .core-value-content {
    gap: 12px;
    text-align: center;
  }
}
.tab-content {
  display: none;
}
.tab-content.tab-content-active {
  display: block;
}

/* Time Line Custom */
.history-content {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 120px;
}

.timeline-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 79px;
  position: relative;
  display: grid;
  grid-template-columns: 633px 2px 1fr;
  gap: 130px;
}

.decade-sections {
  display: flex;
  flex-direction: column;
  gap: 146px;
}
.decade-sections .decade-section {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.decade-sections .decade-section .decade-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.04px;
}
.decade-sections .decade-section .decade-title .year-large {
  font-size: 78px;
  color: black;
}
.decade-sections .decade-section .decade-title .year-small {
  font-size: 68px;
  color: black;
}
.decade-sections .decade-section .decade-image-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.decade-sections .decade-section .decade-image-card .img-container {
  background: #ffd6de;
  height: 365px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.decade-sections .decade-section .decade-image-card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.decade-sections .decade-section .decade-image-card .image-caption {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.decade-sections .decade-section .decade-image-card .image-caption .caption-date {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.42px;
  color: #a99e62;
  line-height: normal;
}
.decade-sections .decade-section .decade-image-card .image-caption .caption-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.42px;
  color: black;
  line-height: normal;
  white-space: pre;
}

.timeline-bar {
  width: 2px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline-bar .timeline-segment {
  width: 2px;
}
.timeline-bar .timeline-segment.timeline-gray {
  background: #e0e0e0;
}
.timeline-bar .timeline-segment.timeline-dark {
  background: #252525;
}

.history-details {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 1px;
}
.history-details .history-year-group {
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.history-details .history-year-group .year-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -1.2px;
  color: black;
  line-height: normal;
}
.history-details .history-year-group .history-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.history-details .history-year-group .history-items .history-item {
  display: flex;
  align-items: center;
  gap: 32px;
}
.history-details .history-year-group .history-items .history-item .item-month {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.54px;
  color: #343434;
  white-space: nowrap;
  line-height: normal;
  flex-shrink: 0;
}
.history-details .history-year-group .history-items .history-item .item-month.month-black {
  color: black;
}
.history-details .history-year-group .history-items .history-item .item-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: #343434;
  line-height: normal;
  white-space: pre-wrap;
}

.affiliates-content {
  width: 100%;
  padding: 120px 40px;
}
@media (max-width: 768px) {
  .affiliates-content {
    padding: 0 32px;
  }
}

.affiliates-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 40px;
}
@media (max-width: 1280px) {
  .affiliates-container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .affiliates-container {
    padding: 0;
  }
}

.affiliates-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.affiliates-header .affiliates-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -1.8px;
  color: black;
  line-height: 87px;
}
.affiliates-header .affiliates-description {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: black;
}

.company-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 24px;
  padding: 0 32px;
}
@media (max-width: 1280px) {
  .company-cards-grid {
    padding: 0;
  }
}

.company-card {
  background: white;
  border: 1px solid #b4b4b4;
  border-radius: 0px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 470px;
  max-height: 570px;
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .company-card {
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .company-card {
    padding: 2.5rem;
    min-height: 520px;
  }
}
.company-card.company-card-single {
  grid-column: 1/2;
}
.company-card:nth-child(3) > .company-logo {
  height: 24px;
}
.company-card:nth-child(4) > .company-logo {
  height: 24px;
}
@media (max-width: 768px) {
  .company-card:nth-child(4) > .company-logo img {
    max-height: 20px;
  }
}
@media (max-width: 480px) {
  .company-card:nth-child(4) > .company-logo img {
    max-height: 18px;
  }
}
.company-card:nth-child(5) > .company-logo {
  height: 36px;
}
.company-card:nth-child(6) > .company-logo {
  height: 26px;
}
.company-card:nth-child(7) > .company-logo {
  height: 28px;
}
@media (max-width: 768px) {
  .company-card:nth-child(7) > .company-logo img {
    max-height: 32px;
  }
}
@media (max-width: 480px) {
  .company-card:nth-child(7) > .company-logo img {
    max-height: 28px;
  }
}
.company-card:nth-child(8) > .company-logo {
  height: 34px;
}
@media (max-width: 480px) {
  .company-card:nth-child(8) > .company-logo img {
    max-height: 30px;
  }
}
.company-card:nth-child(9) > .company-logo {
  height: 20px;
}
.company-card .company-name {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  line-height: normal;
  color: black;
  display: flex;
  align-items: center;
  gap: 2px;
}
.company-card .company-name .company-name-main {
  font-size: 30px;
  letter-spacing: -1.2px;
}
.company-card .company-name .company-name-sub {
  font-size: 21px;
  letter-spacing: -0.84px;
}
.company-card .company-description {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.64px;
  color: rgba(0, 0, 0, 0.8);
}
.company-card .company-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.company-card .company-info p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.64px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}
.company-card .company-info p strong {
  font-weight: 700;
  color: black;
  margin-right: 46px;
}
.company-card .company-info .company-phone strong {
  margin-right: 19px;
}
.company-card .company-logo {
  display: flex;
  align-items: center;
  height: 32px;
  justify-content: space-between;
  position: absolute;
  bottom: 32px;
  width: 100%;
  padding-right: 64px;
}
@media (max-width: 480px) {
  .company-card .company-logo {
    padding-right: 40px;
  }
}
.company-card .company-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.company-card .company-logo .company-logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: black;
  line-height: normal;
  margin: 0;
}

.awards-content {
  width: 100%;
  max-width: 1440px;
  padding: 120px 40px;
  margin: auto;
}
@media (max-width: 768px) {
  .awards-content {
    padding: 0 40px;
  }
}

.awards-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 40px;
}
@media (max-width: 1280px) {
  .awards-container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .awards-container {
    padding: 0;
  }
}

.awards-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.awards-header .awards-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -1.8px;
  color: black;
  line-height: 87px;
}
.awards-header .awards-description {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -0.9px;
  color: black;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 24px;
  padding: 0 32px;
}
@media (max-width: 1280px) {
  .awards-grid {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

.award-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.award-card .award-image {
  width: 100%;
  height: 210px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.award-card .award-image.award-placeholder {
  background: #f5f5f5;
}
.award-card .award-image.award-image-trophy {
  background: #fff3cc;
  border-radius: 18px;
  padding: 40px 32px;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-trophy {
    padding: 32px;
  }
}
.award-card .award-image.award-image-trophy .award-trophy-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.award-card .award-image.award-image-trophy .award-trophy-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.award-card .award-image.award-image-trophy .award-trophy-text .trophy-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #181818;
  margin: 0;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-trophy .award-trophy-text .trophy-title {
    font-size: 20px;
    margin-right: 10px;
  }
}
.award-card .award-image.award-image-trophy .award-trophy-text .trophy-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #848484;
  margin: 0;
}
.award-card .award-image.award-image-trophy .award-trophy-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-trophy .award-trophy-icon {
    width: 80px;
    height: 80px;
  }
}
.award-card .award-image.award-image-trophy .award-trophy-icon svg {
  width: 100%;
  height: 100%;
}
.award-card .award-image.award-image-badge {
  background: #f4f4f4;
  border-radius: 18px;
  padding: 40px 32px;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-badge {
    padding: 32px;
  }
}
.award-card .award-image.award-image-badge .award-badge-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.award-card .award-image.award-image-badge .award-badge-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.award-card .award-image.award-image-badge .award-badge-text .badge-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #181818;
  margin: 0;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-badge .award-badge-text .badge-title {
    font-size: 20px;
    margin-right: 10px;
  }
}
.award-card .award-image.award-image-badge .award-badge-text .badge-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #848484;
  margin: 0;
}
.award-card .award-image.award-image-badge .award-badge-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .award-card .award-image.award-image-badge .award-badge-icon {
    width: 80px;
    height: 80px;
  }
}
.award-card .award-image.award-image-badge .award-badge-icon svg {
  width: 100%;
  height: 100%;
}
.award-card .award-image .award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.award-card .award-image .award-badge .award-badge-text {
  color: white;
}
.award-card .award-image .award-badge .award-badge-text .badge-year {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.award-card .award-image .award-badge .award-badge-text .badge-title {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}
.award-card .award-image .award-period {
  position: absolute;
  bottom: 30px;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: white;
  margin: 0;
}
.award-card .award-image .placeholder-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-card .award-image .placeholder-logo img {
  max-width: 291px;
  max-height: 32px;
  opacity: 0.5;
}
.award-card .award-info .award-name {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.78px;
  color: black;
  line-height: normal;
}
.award-card .award-info .award-org {
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.54px;
  color: black;
  margin: 16px 0 16px 0;
}
.award-card .award-info .award-date {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.42px;
  color: #999999;
  margin: 0;
  display: none;
}

@media screen and (max-width: 1024px) {
  .history-content {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .affiliates-content,
  .awards-content {
    padding-bottom: 100px;
  }
  .affiliates-container,
  .awards-container {
    gap: 50px;
  }
  .affiliates-header,
  .awards-header {
    gap: 24px;
  }
  .affiliates-header .affiliates-title,
  .affiliates-header .awards-title,
  .awards-header .affiliates-title,
  .awards-header .awards-title {
    font-size: 48px;
    line-height: 70px;
  }
  .affiliates-header .affiliates-description,
  .affiliates-header .awards-description,
  .awards-header .affiliates-description,
  .awards-header .awards-description {
    font-size: 24px;
    line-height: 38px;
  }
  .company-cards-grid {
    gap: 24px;
  }
  .company-card {
    padding: 24px;
    gap: 28px;
  }
  .company-card .company-name .company-name-main {
    font-size: 26px;
  }
  .company-card .company-name .company-name-sub {
    font-size: 18px;
  }
  .company-card .company-description {
    font-size: 15px;
    line-height: 26px;
  }
  .company-card .company-info p {
    font-size: 15px;
  }
  .company-card .company-info p strong {
    margin-right: 30px;
  }
  .award-card .award-image {
    height: 280px;
  }
  .award-card .award-info .award-name {
    font-size: 22px;
  }
  .award-card .award-info .award-org {
    font-size: 16px;
  }
  .award-card .award-info .award-date {
    font-size: 13px;
  }
  .timeline-container {
    padding: 0 60px;
    grid-template-columns: 500px 2px 1fr;
    gap: 80px;
  }
  .decade-sections {
    gap: 120px;
  }
  .decade-sections .decade-section {
    gap: 30px;
  }
  .decade-sections .decade-section .decade-title .year-large {
    font-size: 60px;
  }
  .decade-sections .decade-section .decade-title .year-small {
    font-size: 52px;
  }
  .decade-sections .decade-section .decade-image-card {
    gap: 14px;
  }
  .decade-sections .decade-section .decade-image-card .img-container {
    height: 300px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption {
    gap: 9px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-date {
    font-size: 13px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-text {
    font-size: 13px;
  }
  .history-details {
    gap: 50px;
  }
  .history-details .history-year-group {
    gap: 30px;
  }
  .history-details .history-year-group .year-heading {
    font-size: 34px;
  }
  .history-details .history-year-group .history-items {
    gap: 10px;
  }
  .history-details .history-year-group .history-items .history-item {
    gap: 24px;
  }
  .history-details .history-year-group .history-items .history-item .item-month {
    font-size: 16px;
  }
  .history-details .history-year-group .history-items .history-item .item-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .history-content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .affiliates-container,
  .awards-container {
    gap: 40px;
  }
  .affiliates-header,
  .awards-header {
    gap: 20px;
  }
  .affiliates-header .affiliates-title,
  .affiliates-header .awards-title,
  .awards-header .affiliates-title,
  .awards-header .awards-title {
    font-size: 38px;
    line-height: 56px;
  }
  .affiliates-header .affiliates-description,
  .affiliates-header .awards-description,
  .awards-header .affiliates-description,
  .awards-header .awards-description {
    font-size: 20px;
    line-height: 32px;
  }
  .company-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .company-card {
    padding: 20px;
    gap: 24px;
  }
  .company-card.company-card-single {
    grid-column: 1/2;
  }
  .company-card .company-name .company-name-main {
    font-size: 24px;
  }
  .company-card .company-name .company-name-sub {
    font-size: 17px;
  }
  .company-card .company-description {
    font-size: 14px;
    line-height: 24px;
  }
  .company-card .company-info p {
    font-size: 14px;
  }
  .company-card .company-info p strong {
    margin-right: 20px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .award-card .award-image {
    height: 250px;
  }
  .award-card .award-info .award-name {
    font-size: 20px;
  }
  .award-card .award-info .award-org {
    font-size: 15px;
  }
  .award-card .award-info .award-date {
    font-size: 12px;
  }
  .timeline-container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .decade-sections {
    gap: 60px;
  }
  .decade-sections .decade-section {
    gap: 24px;
  }
  .decade-sections .decade-section .decade-title .year-large {
    font-size: 48px;
  }
  .decade-sections .decade-section .decade-title .year-small {
    font-size: 42px;
  }
  .decade-sections .decade-section .decade-image-card {
    gap: 12px;
  }
  .decade-sections .decade-section .decade-image-card .img-container {
    height: 250px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption {
    gap: 8px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-date {
    font-size: 12px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-text {
    font-size: 12px;
  }
  .timeline-bar {
    display: none;
  }
  .history-details {
    gap: 40px;
  }
  .history-details .history-year-group {
    gap: 24px;
  }
  .history-details .history-year-group .year-heading {
    font-size: 28px;
  }
  .history-details .history-year-group .history-items {
    gap: 8px;
  }
  .history-details .history-year-group .history-items .history-item {
    gap: 16px;
  }
  .history-details .history-year-group .history-items .history-item .item-month {
    font-size: 15px;
    min-width: 50px;
  }
  .history-details .history-year-group .history-items .history-item .item-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .history-content {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .affiliates-content,
  .awards-content {
    padding: 40px 20px 120px;
  }
  .affiliates-container,
  .awards-container {
    gap: 32px;
  }
  .affiliates-header,
  .awards-header {
    gap: 16px;
  }
  .affiliates-header .affiliates-title,
  .affiliates-header .awards-title,
  .awards-header .affiliates-title,
  .awards-header .awards-title {
    font-size: 32px;
    line-height: 46px;
  }
  .affiliates-header .affiliates-description,
  .affiliates-header .awards-description,
  .awards-header .affiliates-description,
  .awards-header .awards-description {
    font-size: 16px;
    line-height: 26px;
  }
  .company-cards-grid {
    gap: 16px;
  }
  .company-card {
    padding: 18px;
    gap: 20px;
  }
  .company-card .company-name .company-name-main {
    font-size: 20px;
  }
  .company-card .company-name .company-name-sub {
    font-size: 15px;
  }
  .company-card .company-description {
    font-size: 14px;
    line-height: 24px;
  }
  .company-card .company-info p {
    font-size: 14px;
  }
  .company-card .company-info p strong {
    display: block;
    margin-bottom: 6px;
    margin-right: 0;
  }
  .company-card .company-logo img {
    max-height: 20px;
  }
  .awards-grid {
    gap: 24px;
  }
  .award-card .award-image {
    height: 220px;
    padding: 30px;
  }
  .award-card .award-image .award-badge {
    gap: 12px;
  }
  .award-card .award-image .award-badge svg {
    width: 60px;
    height: 60px;
  }
  .award-card .award-image .award-badge .award-badge-text .badge-year {
    font-size: 18px;
  }
  .award-card .award-image .award-badge .award-badge-text .badge-title {
    font-size: 16px;
  }
  .award-card .award-image .award-period {
    font-size: 14px;
    bottom: 20px;
  }
  .award-card .award-info .award-name {
    font-size: 18px;
  }
  .award-card .award-info .award-org {
    font-size: 14px;
  }
  .award-card .award-info .award-date {
    font-size: 11px;
  }
  .timeline-container {
    padding: 0 20px;
    gap: 40px;
  }
  .decade-sections {
    gap: 50px;
  }
  .decade-sections .decade-section {
    gap: 20px;
  }
  .decade-sections .decade-section .decade-title .year-large {
    font-size: 36px;
  }
  .decade-sections .decade-section .decade-title .year-small {
    font-size: 32px;
  }
  .decade-sections .decade-section .decade-image-card {
    gap: 10px;
  }
  .decade-sections .decade-section .decade-image-card .img-container {
    height: 200px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption {
    gap: 6px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-date {
    font-size: 11px;
  }
  .decade-sections .decade-section .decade-image-card .image-caption .caption-text {
    font-size: 11px;
    white-space: normal;
  }
  .history-details {
    gap: 32px;
  }
  .history-details .history-year-group {
    gap: 20px;
  }
  .history-details .history-year-group .year-heading {
    font-size: 24px;
  }
  .history-details .history-year-group .history-items {
    gap: 8px;
  }
  .history-details .history-year-group .history-items .history-item {
    gap: 12px;
    flex-wrap: wrap;
  }
  .history-details .history-year-group .history-items .history-item .item-month {
    font-size: 14px;
    min-width: 45px;
  }
  .history-details .history-year-group .history-items .history-item .item-text {
    font-size: 13px;
    flex: 1;
    min-width: 200px;
  }
}
.research-section {
  background: rgba(234, 235, 237, 0.5);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-container {
  width: 100%;
  max-width: 1440px;
  padding: 80px 40px;
}
@media (max-width: 1024px) {
  .research-container {
    padding: 80px 32px;
  }
}

.research-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
  justify-content: space-between;
}

.research-text-area {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  gap: 80px;
  flex: 1;
}

.research-description {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -1.4px;
  color: rgba(0, 0, 0, 0.8);
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .research-description {
    font-size: 20px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .research-description {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .research-description {
    font-size: 16px;
    line-height: 28px;
  }
}
.research-description p {
  margin: 0;
}

.research-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.research-tab {
  background: white;
  border: none;
  border-radius: 24px;
  padding: 16px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: none;
}
.research-tab:hover {
  background: rgba(1, 167, 194, 0.1);
}
.research-tab.active {
  background: #01a7c2;
  color: white;
}

.research-image-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.research-image-container {
  position: relative;
  width: 100%;
  height: 820px;
  border-radius: 48px;
  overflow: hidden;
}

.research-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.research-image.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .research-container {
    padding: 60px 80px;
  }
  .research-content {
    gap: 80px;
  }
  .research-text-area {
    width: 100%;
    max-width: 600px;
    gap: 60px;
    padding-top: 30px;
  }
  .research-tabs {
    gap: 16px;
    flex-wrap: wrap;
  }
  .research-tab {
    padding: 20px;
    font-size: 18px;
    border-radius: 20px;
  }
  .research-image-container {
    width: 400px;
    height: 610px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  .research-section {
    min-height: auto;
  }
  .research-container {
    padding: 50px 30px;
  }
  .research-content {
    flex-direction: column;
    gap: 50px;
  }
  .research-text-area {
    max-width: 100%;
    gap: 50px;
    padding-top: 0;
  }
  .research-tabs {
    gap: 12px;
  }
  .research-tab {
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 18px;
  }
  .research-image-container {
    width: 100%;
    max-width: 450px;
    height: 540px;
    border-radius: 36px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .research-container {
    padding: 40px 20px;
  }
  .research-content {
    gap: 40px;
  }
  .research-text-area {
    gap: 40px;
  }
  .research-tabs {
    gap: 10px;
  }
  .research-tab {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 16px;
    flex: 1 1 auto;
    min-width: calc(50% - 5px);
  }
  .research-image-container {
    max-width: 100%;
    height: 480px;
    border-radius: 32px;
  }
}
.valence-section {
  width: 100%;
  padding: 0px 24px 120px;
  background: white;
}
@media (max-width: 768px) {
  .valence-section {
    padding: 80px 56px 120px;
  }
}
@media (max-width: 480px) {
  .valence-section {
    padding: 0px 20px 0px;
  }
}
.valence-section .valence-container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.valence-section .valence-container .valence-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1190px;
}
.valence-section .valence-container .valence-items .valence-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  position: relative;
}
@media (max-width: 768px) {
  .valence-section .valence-container .valence-items .valence-item {
    gap: 24px;
  }
}
.valence-section .valence-container .valence-items .valence-item::after {
  content: "";
  display: block;
  position: absolute;
  left: 430px;
  right: 360px;
  min-width: 44px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='526' height='11' viewBox='0 0 526 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M514.667 5.33301C514.667 8.27853 517.054 10.6663 520 10.6663C522.945 10.6663 525.333 8.27853 525.333 5.33301C525.333 2.38749 522.945 -0.00032568 520 -0.00032568C517.054 -0.00032568 514.667 2.38749 514.667 5.33301ZM0 5.33301V6.33301H3.02326V5.33301V4.33301H0V5.33301ZM9.06977 5.33301V6.33301H15.1163V5.33301V4.33301H9.06977V5.33301ZM21.1628 5.33301V6.33301H27.2093V5.33301V4.33301H21.1628V5.33301ZM33.2558 5.33301V6.33301H39.3023V5.33301V4.33301H33.2558V5.33301ZM45.3488 5.33301V6.33301H51.3953V5.33301V4.33301H45.3488V5.33301ZM57.4419 5.33301V6.33301H63.4884V5.33301V4.33301H57.4419V5.33301ZM69.5349 5.33301V6.33301H75.5814V5.33301V4.33301H69.5349V5.33301ZM81.6279 5.33301V6.33301H87.6744V5.33301V4.33301H81.6279V5.33301ZM93.7209 5.33301V6.33301H99.7674V5.33301V4.33301H93.7209V5.33301ZM105.814 5.33301V6.33301H111.86V5.33301V4.33301H105.814V5.33301ZM117.907 5.33301V6.33301H123.953V5.33301V4.33301H117.907V5.33301ZM130 5.33301V6.33301H136.046V5.33301V4.33301H130V5.33301ZM142.093 5.33301V6.33301H148.14V5.33301V4.33301H142.093V5.33301ZM154.186 5.33301V6.33301H160.233V5.33301V4.33301H154.186V5.33301ZM166.279 5.33301V6.33301H172.326V5.33301V4.33301H166.279V5.33301ZM178.372 5.33301V6.33301H184.419V5.33301V4.33301H178.372V5.33301ZM190.465 5.33301V6.33301H196.512V5.33301V4.33301H190.465V5.33301ZM202.558 5.33301V6.33301H208.605V5.33301V4.33301H202.558V5.33301ZM214.651 5.33301V6.33301H220.698V5.33301V4.33301H214.651V5.33301ZM226.744 5.33301V6.33301H232.791V5.33301V4.33301H226.744V5.33301ZM238.837 5.33301V6.33301H244.884V5.33301V4.33301H238.837V5.33301ZM250.93 5.33301V6.33301H256.977V5.33301V4.33301H250.93V5.33301ZM263.023 5.33301V6.33301H269.07V5.33301V4.33301H263.023V5.33301ZM275.116 5.33301V6.33301H281.163V5.33301V4.33301H275.116V5.33301ZM287.209 5.33301V6.33301H293.256V5.33301V4.33301H287.209V5.33301ZM299.302 5.33301V6.33301H305.349V5.33301V4.33301H299.302V5.33301ZM311.395 5.33301V6.33301H317.442V5.33301V4.33301H311.395V5.33301ZM323.488 5.33301V6.33301H329.535V5.33301V4.33301H323.488V5.33301ZM335.581 5.33301V6.33301H341.628V5.33301V4.33301H335.581V5.33301ZM347.674 5.33301V6.33301H353.721V5.33301V4.33301H347.674V5.33301ZM359.767 5.33301V6.33301H365.814V5.33301V4.33301H359.767V5.33301ZM371.86 5.33301V6.33301H377.907V5.33301V4.33301H371.86V5.33301ZM383.953 5.33301V6.33301H390V5.33301V4.33301H383.953V5.33301ZM396.046 5.33301V6.33301H402.093V5.33301V4.33301H396.046V5.33301ZM408.139 5.33301V6.33301H414.186V5.33301V4.33301H408.139V5.33301ZM420.232 5.33301V6.33301H426.279V5.33301V4.33301H420.232V5.33301ZM432.325 5.33301V6.33301H438.372V5.33301V4.33301H432.325V5.33301ZM444.418 5.33301V6.33301H450.465V5.33301V4.33301H444.418V5.33301ZM456.511 5.33301V6.33301H462.558V5.33301V4.33301H456.511V5.33301ZM468.604 5.33301V6.33301H474.651V5.33301V4.33301H468.604V5.33301ZM480.697 5.33301V6.33301H486.744V5.33301V4.33301H480.697V5.33301ZM492.791 5.33301V6.33301H498.837V5.33301V4.33301H492.791V5.33301ZM504.884 5.33301V6.33301H510.93V5.33301V4.33301H504.884V5.33301ZM516.977 5.33301V6.33301H520V5.33301V4.33301H516.977V5.33301Z' fill='%23AE8053'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1280px) {
  .valence-section .valence-container .valence-items .valence-item::after {
    left: 280px;
  }
}
@media (max-width: 480px) {
  .valence-section .valence-container .valence-items .valence-item::after {
    display: none;
  }
}
.valence-section .valence-container .valence-items .valence-item .valence-badge {
  max-width: 430px;
  width: 100%;
  height: 140px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 24px;
}
@media (max-width: 1280px) {
  .valence-section .valence-container .valence-items .valence-item .valence-badge {
    max-width: 280px;
    height: 100px;
  }
}
.valence-section .valence-container .valence-items .valence-item .valence-badge span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 480px) {
  .valence-section .valence-container .valence-items .valence-item .valence-badge span {
    padding: 24px;
    line-height: 28px;
  }
}
.valence-section .valence-container .valence-items .valence-item .valence-badge span.font-color {
  color: #AE8053;
}
.valence-section .valence-container .valence-items .valence-item .valence-badge.valence-badge-brightest {
  background: rgba(173, 128, 83, 0.2);
}
.valence-section .valence-container .valence-items .valence-item .valence-badge.valence-badge-light {
  background: rgba(173, 128, 83, 0.4);
}
.valence-section .valence-container .valence-items .valence-item .valence-badge.valence-badge-medium {
  background: rgba(173, 128, 83, 0.6);
}
.valence-section .valence-container .valence-items .valence-item .valence-badge.valence-badge-dark {
  background: rgba(173, 128, 83, 0.8);
}
.valence-section .valence-container .valence-items .valence-item .valence-badge.valence-badge-darkest {
  background: #ae8053;
}
.valence-section .valence-container .valence-items .valence-item .valence-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
  width: auto;
}
.valence-section .valence-container .valence-items .valence-item .valence-content .valence-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.72px;
  color: black;
  line-height: normal;
  text-transform: uppercase;
}
.valence-section .valence-container .valence-items .valence-item .valence-content .valence-text {
  width: 280px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #333333;
  text-transform: uppercase;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  .valence-section .valence-container .valence-items .valence-item .valence-content .valence-text {
    width: auto;
  }
}
.valence-section .valence-container .valence-items .valence-item .valence-content .valence-text p {
  margin: auto;
}
@media (max-width: 768px) {
  .valence-section .valence-container .valence-items .valence-item {
    flex-direction: column;
    align-items: center;
  }
  .valence-section .valence-container .valence-items .valence-item::after {
    display: none;
  }
  .valence-section .valence-container .valence-items .valence-item .valence-content {
    width: 100%;
    text-align: center;
  }
  .valence-section .valence-container .valence-items .valence-item .valence-content .valence-text {
    width: 100%;
  }
}

body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.service-scenario {
  width: 100%;
  padding: 40px 24px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .service-scenario {
    padding: 80px 0;
  }
}

.service-container {
  width: 100%;
  max-width: 1440px;
  position: relative;
}

.service-header {
  text-align: center;
  margin-bottom: 120px;
}

.service-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #000000;
  margin-bottom: 24px;
}

.service-title {
  line-height: 42px;
  letter-spacing: -1.5px;
  color: #000000;
  font-weight: 400;
}
.service-title p {
  margin-bottom: 0;
}

.service-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  background-color: #f6eee5;
  border-radius: 15px;
  padding: 48px 24px;
  width: 381px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card:nth-child(2) {
  width: 380px;
}

.service-card-image {
  width: 140px;
  height: 140px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-shadow: none;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.service-card-title {
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -1px;
  color: #392514;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .service-card-title .only-lg {
    display: block;
  }
}

.service-card-description {
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.8px;
  color: #757372;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .service-card-description .only-lg {
    display: none;
  }
}
@media (max-width: 768px) {
  .service-card-description .only-lg {
    display: block;
  }
}

@media screen and (max-width: 1440px) {
  .service-cards {
    gap: 20px;
  }
  .service-card {
    width: calc((100% - 40px) / 3);
  }
  .service-card:nth-child(2) {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .service-header {
    margin-bottom: 80px;
  }
  .service-title {
    line-height: 40px;
    letter-spacing: -1.3px;
  }
  .service-subtitle {
    font-size: 18px;
  }
  .service-cards {
    gap: 16px;
  }
  .service-card {
    gap: 24px;
  }
  .service-card:nth-child(2) {
    width: calc((100% - 32px) / 3);
  }
  .card-image {
    width: 160px;
    height: 160px;
  }
  .card-image img {
    width: 113px;
    height: 113px;
  }
  .card-title {
    font-size: 18px;
    word-break: keep-all;
  }
  .card-description {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.7px;
  }
}
@media screen and (max-width: 768px) {
  .service-container {
    padding: 0 40px;
  }
  .service-header {
    margin-bottom: 60px;
  }
  .service-title {
    line-height: 34px;
    letter-spacing: -1.1px;
  }
  .service-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .service-card {
    width: 100%;
  }
  .service-card:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .service-card .card-title .only-lg {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .service-container {
    padding: 0 20px;
  }
  .service-header {
    margin-bottom: 40px;
  }
  .service-title {
    line-height: 30px;
    letter-spacing: -1px;
  }
  .service-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .service-card {
    padding: 24px 20px;
    gap: 20px;
  }
  .card-image {
    width: 140px;
    height: 140px;
  }
  .card-image img {
    width: 100px;
    height: 100px;
  }
  .card-title {
    font-size: 16px;
  }
  .card-description {
    font-size: 13px;
    line-height: 19.5px;
    letter-spacing: -0.65px;
  }
}
.highlight {
  font-weight: 700;
  color: #af845e;
}

.pink-ribbon-activities {
  background-color: rgba(255, 241, 241, 0.6);
  min-height: 760px;
}

.activities-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .activities-grid {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .activities-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.activity-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.activity-card .pink-ribbon-card-icon {
  background-color: transparent;
}

.icon-wrapper {
  background-color: #fff1f1;
  border-radius: 15px;
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .icon-wrapper {
    width: 120px;
    height: 120px;
  }
}
.icon-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 19px;
  flex: 1;
}

.pink-card-title {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  color: #000000;
  margin: 0;
  word-break: keep-all;
  text-align: left;
}
@media (max-width: 1024px) {
  .pink-card-title {
    font-size: 22px;
  }
}

.pink-card-description {
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.6px;
  color: #5f5f5f;
  margin: 0;
  word-break: keep-all;
}

.campaign-donation-section {
  background-color: #ffffff;
}

.campaign-banner {
  padding: 80px 0px;
  background-color: #ffffff;
}

.campaign-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 97px;
  align-items: center;
  padding: 0 40px;
}

.campaign-image {
  flex-shrink: 0;
}
.campaign-image img {
  width: 431px;
  height: 585px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: -1px 1px 28.9px 3px rgba(0, 0, 0, 0.1);
}

.campaign-content {
  padding: 110px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.campaign-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .campaign-header {
    align-items: center;
  }
}

.campaign-label {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #e3508a;
  margin: 0;
}

.campaign-title {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.02px;
  color: #000000;
  margin: 0;
}

.campaign-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .campaign-description {
    align-items: center;
  }
}

.description-main {
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.78px;
  color: #000000;
  margin: 0;
  word-break: keep-all;
}

.description-sub {
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.66px;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
  word-break: keep-all;
}

.donation-section {
  padding: 80px 0px;
  background-color: #ffffff;
}

.donation-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
  align-items: center;
  position: relative;
  padding: 0 40px;
}
.donation-container:last-child {
  justify-content: flex-end;
}

.donation-content {
  padding: 110px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  text-align: right;
  flex: 1;
}

.donation-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.donation-label {
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #e3508a;
  margin: 0;
}

.donation-title {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.02px;
  color: #000000;
  margin: 0;
}

.donation-description p {
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.78px;
  color: #000000;
  margin: 0;
  word-break: keep-all;
}

.donation-image {
  flex: 1;
  position: relative;
}
.donation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: -1px 1px 28.9px 3px rgba(0, 0, 0, 0.1);
}

.donation-badge {
  position: absolute;
  left: 61px;
  top: 479px;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.808px solid #e3508a;
  box-shadow: 2px 4px 17.6px -1px rgba(0, 0, 0, 0.1);
  background-color: #d9d9d9;
}
.donation-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

@media screen and (max-width: 1440px) {
  .campaign-container,
  .donation-container {
    gap: 40px;
  }
  .campaign-image img {
    width: 340px;
    height: 460px;
  }
  .donation-badge {
    top: 422px;
  }
}
@media screen and (max-width: 1024px) {
  .activity-card {
    width: 100%;
    gap: 20px;
  }
  .icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .icon-wrapper img {
    width: 54px;
    height: 54px;
  }
  .pink-card-title {
    letter-spacing: -0.6px;
  }
  .pink-card-description {
    line-height: 28px;
    letter-spacing: -0.51px;
  }
  .campaign-container,
  .donation-container {
    gap: 50px;
  }
  .campaign-content,
  .donation-content {
    padding: 80px 0;
    gap: 50px;
  }
  .campaign-title,
  .donation-title {
    letter-spacing: -0.9px;
  }
  .description-main,
  .donation-description p {
    letter-spacing: -0.69px;
  }
  .description-sub {
    letter-spacing: -0.57px;
  }
  .donation-badge {
    width: 60px;
    height: 60px;
    top: 380px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .pink-ribbon-activities {
    padding: 50px 20px;
  }
  .activity-card {
    width: 100%;
    height: auto;
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
  .icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .icon-wrapper img {
    width: 48px;
    height: 48px;
  }
  .campaign-banner,
  .donation-section {
    padding: 50px 0px;
  }
  .campaign-container,
  .donation-container {
    flex-direction: column;
    gap: 40px;
  }
  .donation-container {
    flex-direction: column-reverse;
  }
  .campaign-image img,
  .donation-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .campaign-content,
  .donation-content {
    padding: 0;
    gap: 16px;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .donation-content {
    text-align: center;
  }
  .donation-header {
    align-items: center;
  }
  .campaign-title,
  .donation-title {
    letter-spacing: -0.78px;
  }
  .description-main,
  .donation-description p {
    line-height: 32px;
    letter-spacing: -0.6px;
    text-align: center;
  }
  .description-sub {
    letter-spacing: -0.51px;
    text-align: center;
  }
  .donation-badge {
    width: 55px;
    height: 55px;
    top: auto;
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .pink-ribbon-activities {
    padding: 40px 20px;
  }
  .activity-card {
    gap: 16px;
    flex-direction: column;
  }
  .icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .icon-wrapper img {
    width: 40px;
    height: 40px;
  }
  .pink-card-title {
    letter-spacing: -0.48px;
  }
  .pink-card-description {
    letter-spacing: -0.42px;
  }
  .campaign-banner,
  .donation-section {
    padding: 40px 20px;
  }
  .campaign-container,
  .donation-container {
    gap: 30px;
    padding: 0;
  }
  .campaign-image img,
  .donation-image img {
    max-width: 100%;
  }
  .campaign-content,
  .donation-content {
    gap: 30px;
    word-break: keep-all;
  }
  .campaign-label,
  .donation-label {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  .campaign-title,
  .donation-title {
    letter-spacing: -0.66px;
  }
  .description-main,
  .donation-description p {
    line-height: 28px;
    letter-spacing: -0.54px;
  }
  .description-sub {
    letter-spacing: -0.45px;
  }
  .donation-badge {
    width: 50px;
    height: 50px;
  }
}
body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.donation-activities {
  padding: 0px 40px 120px 40px;
  background-color: #ffffff;
}

.activities-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 100px 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1280px) {
  .activities-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.donation-card {
  background-color: #f7f7f7;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.donation-card-content {
  padding: 40px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.donation-card-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.year-badge {
  background-color: #a77758;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
  padding: 8px 16px;
  border-radius: 38.723px;
  display: inline-block;
}

.donation-card-title {
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.72px;
  color: #000000;
  text-align: center;
  margin: 0;
  word-break: keep-all;
}

.donation-card-list {
  list-style: disc;
  padding-left: 24px;
  width: 100%;
}
.donation-card-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  word-break: keep-all;
}
.donation-card-list li:not(:last-child) {
  margin-bottom: 12px;
}

.donation-card-image {
  background-color: #c79999;
  height: 308px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.donation-card-image img {
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.donation-card:hover .donation-card-image img {
  transform: scale(1.05);
}

@media screen and (max-width: 1440px) {
  .donation-card-image {
    height: 280px;
  }
  .donation-card-image img {
    width: 472px;
    height: 280px;
  }
  .donation-card-title {
    line-height: 32px;
    letter-spacing: -0.66px;
  }
  .donation-card-list li {
    line-height: 24px;
    letter-spacing: -0.45px;
  }
}
@media screen and (max-width: 1024px) {
  .donation-activities {
    padding: 40px 56px 120px;
  }
  .activities-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .donation-card-content {
    padding: 24px 20px 24px;
    gap: 35px;
  }
  .donation-card-header {
    gap: 20px;
  }
  .year-badge {
    padding: 7px 14px;
  }
  .donation-card-title {
    line-height: 28px;
    letter-spacing: -0.6px;
  }
  .donation-card-list li {
    line-height: 22px;
    letter-spacing: -0.42px;
  }
  .donation-card-image {
    height: 250px;
  }
  .donation-card-image img {
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .donation-activities {
    padding: 40px 32px 120px;
  }
  .activities-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 24px;
  }
  .donation-card {
    width: 100%;
    height: auto;
    min-height: 550px;
    margin: auto;
  }
  .donation-card-content {
    padding: 35px 24px 30px;
    gap: 32px;
  }
  .donation-card-header {
    gap: 22px;
  }
  .year-badge {
    padding: 8px 15px;
  }
  .donation-card-title {
    line-height: 30px;
    letter-spacing: -0.63px;
  }
  .donation-card-list {
    padding-left: 20px;
  }
  .donation-card-list li {
    line-height: 24px;
    letter-spacing: -0.45px;
  }
  .donation-card-image {
    height: 360px;
  }
  .donation-card-image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .donation-activities {
    padding: 0px 20px 80px;
  }
  .activities-wrapper {
    gap: 40px;
  }
  .activities-row {
    gap: 20px;
  }
  .donation-card {
    max-width: 100%;
    min-height: 500px;
  }
  .donation-card-content {
    padding: 30px 20px 25px;
    gap: 28px;
  }
  .donation-card-header {
    gap: 18px;
  }
  .year-badge {
    padding: 6px 12px;
  }
  .donation-card-title {
    line-height: 26px;
    letter-spacing: -0.54px;
  }
  .donation-card-list {
    padding-left: 18px;
  }
  .donation-card-list li {
    line-height: 22px;
    letter-spacing: -0.42px;
  }
  .donation-card-image {
    height: 220px;
  }
  .donation-card-image img {
    width: 100%;
    height: 220px;
  }
}
.recycle-steps-section {
  background-color: rgba(0, 148, 65, 0.07);
  padding: 120px 40px 120px;
  height: 1000px;
  position: relative;
  gap: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .recycle-steps-section {
    height: 900px;
    gap: 64px;
  }
}
@media (max-width: 480px) {
  .recycle-steps-section {
    height: 770px;
  }
}
@media (max-width: 1280px) {
  .recycle-steps-section .swiper {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .recycle-steps-section .swiper {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .recycle-steps-section .swiper {
    padding: 0 20px;
  }
}

.steps-nav {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1280px) {
  .steps-nav {
    display: none;
  }
}

.steps-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  gap: 174px;
  position: relative;
}

.step-line {
  position: absolute;
  left: 18px;
  top: 70px;
  width: 1px;
  height: 484px;
  background-color: #939393;
  z-index: 0;
}

.step-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 98px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
.step-item:last-child {
  margin-bottom: 0;
}
.step-item:hover .step-label {
  color: #348139;
}

.swiper-pagination-bullet {
  margin: 56px 0 !important;
  position: relative;
}
@media (max-width: 1280px) {
  .swiper-pagination-bullet {
    margin: 40px 0 !important;
  }
}
.swiper-pagination-bullet::before {
  display: block;
  content: "Step.1";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: normal;
}
.swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 2px;
  height: 122px;
  background-color: #999;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media (max-width: 1280px) {
  .swiper-pagination-bullet::after {
    height: 90px;
  }
}
.swiper-pagination-bullet:nth-child(2)::before {
  display: block;
  content: "Step.2";
}
.swiper-pagination-bullet:nth-child(3)::before {
  display: block;
  content: "Step.3";
}
.swiper-pagination-bullet:nth-child(4)::before {
  display: block;
  content: "Step.4";
}
.swiper-pagination-bullet:nth-child(5)::before {
  display: block;
  content: "Step.5";
}
.swiper-pagination-bullet:nth-child(5)::after {
  content: "";
  display: block;
  width: 2px;
  height: 0;
  background-color: #999;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  background: #348139 !important;
}
.swiper-pagination-bullet-active::before {
  font-size: 72px;
  font-weight: bold;
  color: #348139;
}
@media (max-width: 1280px) {
  .swiper-pagination-bullet-active::before {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .swiper-pagination-bullet-active::before {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .swiper-pagination-bullet-active::before {
    font-size: 48px;
  }
}
.swiper-pagination-bullet-active::after {
  opacity: 0.2;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #939393;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-item.active .step-dot {
  background-color: #348139;
  width: 8px;
  height: 8px;
}

.step-label {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -0.72px;
  color: #939393;
  transition: all 0.3s ease;
}

.step-item.active .step-label {
  font-size: 70px;
  letter-spacing: -2.1px;
  color: #348139;
}

.steps-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-header {
  display: flex;
  flex-direction: row;
  max-width: 1440px;
  width: 100%;
  padding: 0 0px 0 350px;
  margin: auto;
  gap: 24px;
}
@media (max-width: 1280px) {
  .content-header {
    display: flex;
    justify-content: center;
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .content-header {
    margin: 0;
    padding: 0;
  }
}
.content-header__gap {
  display: block;
  width: 120px;
}
@media (max-width: 1280px) {
  .content-header__gap {
    display: none;
  }
}
@media (max-width: 1280px) {
  .content-header__title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
}
.content-header__title .content-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: normal;
  letter-spacing: normal;
  color: #005f28;
  text-transform: capitalize;
  margin: 0;
}
.content-header__title .content-title {
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  color: #000000;
  margin: 0;
  text-align: left;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .content-header__title .content-title {
    text-align: center;
  }
}
.content-header__title .content-title .only-md {
  display: none;
}
@media (max-width: 768px) {
  .content-header__title .content-title .only-md {
    display: block;
  }
}

.content-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1188px;
}
.content-image-wrapper .recycle-step-content {
  background: transparent;
  gap: 1rem;
}
.content-image-wrapper .recycle-step-content__description {
  text-align: left;
  color: #181818;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .content-image-wrapper .recycle-step-content__description {
    line-height: 30px;
    text-align: center;
    word-break: keep-all;
  }
}

.step-image {
  border-radius: 40px;
  width: 100%;
  height: auto;
  max-width: 1188px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.mipan-regen-section {
  background-color: #ffffff;
  padding: 80px 120px 160px;
}

.mipan-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .mipan-container {
    margin-top: 32px;
    gap: 32px;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .mipan-container {
    padding: 0;
  }
}

.mipan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mipan-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #005f28;
  text-transform: capitalize;
  margin: 0;
}
@media (max-width: 768px) {
  .mipan-label {
    font-size: 22px;
  }
}

.mipan-title {
  font-weight: 700;
  font-size: 38px;
  line-height: normal;
  color: #000000;
  text-align: center;
  margin: 0;
}

.mipan-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: -1.5px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .mipan-description {
    font-size: 24px;
  }
}
.mipan-description p {
  margin: 0;
}

.mipan-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 88px;
}
@media (max-width: 768px) {
  .mipan-cards {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .mipan-cards {
    margin-top: 1rem;
  }
}

.mipan-card {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media (max-width: 1280px) {
  .mipan-card {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .mipan-card {
    gap: 80px;
    max-width: 540px;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .mipan-card {
    gap: 40px;
  }
}
.mipan-card.card-right {
  padding: 56px 0 0 0;
  gap: 72px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .mipan-card.card-right {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .mipan-card.card-right {
    gap: 80px;
  }
}
@media (max-width: 480px) {
  .mipan-card.card-right {
    gap: 40px;
  }
}

.mipan-card-image {
  width: 280px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
}
@media (max-width: 768px) {
  .mipan-card-image {
    width: 100%;
    padding: 0 130px;
  }
}
@media (max-width: 480px) {
  .mipan-card-image {
    width: 260px;
    min-width: 260px;
    margin: auto;
    padding: 0;
  }
}
.mipan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mipan-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
}
@media (max-width: 480px) {
  .mipan-card-content {
    gap: 24px;
  }
}

.mipan-card-title {
  font-weight: 600;
  font-size: 28px;
  line-height: normal;
  letter-spacing: -0.84px;
  color: #b40000;
  margin: 0;
}
@media (max-width: 768px) {
  .mipan-card-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .mipan-card-title {
    font-size: 20px;
  }
}

.mipan-card-text {
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -0.72px;
  color: #5f5f5f;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .mipan-card-text {
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .mipan-card-text {
    line-height: 30px;
  }
}
.mipan-card-text p {
  margin: 0;
  text-align: left;
}

.mipan-card-list {
  list-style: disc;
  padding-left: 36px;
  margin: 0;
}
@media (max-width: 768px) {
  .mipan-card-list {
    padding-left: 20px;
  }
}

.recycle-info-section {
  background-color: #ffffff;
  padding: 80px 120px;
}

.info-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 150px;
  align-items: center;
}

.info-image {
  width: 620px;
}
.info-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.info-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 592px;
}

.info-card {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-icon {
  background-color: #e0f2e8;
  border-radius: 14px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.5rem;
  width: 82px;
  height: 82px;
  min-width: 82px;
}

.icon-emoji {
  font-size: 24px;
  line-height: 34px;
}

.card-body {
  flex: 6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.card-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
}

.card-label {
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.4395px;
  color: #005f28;
  margin: 0;
}

.info-card .card-title {
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
  color: #1d293d;
  margin: 0;
}

.card-description {
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: #5f5f5f;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .card-description.only-lg {
    display: block;
  }
}
@media (max-width: 480px) {
  .card-description.only-sm {
    display: block;
  }
}
.card-description p {
  margin: 0;
}

@media screen and (max-width: 1440px) {
  .recycle-steps-section {
    padding: 70px 80px;
  }
  .steps-container {
    gap: 120px;
  }
  .mipan-regen-section {
    padding: 70px 80px 140px;
  }
  .mipan-description {
    font-size: 26px;
    line-height: 40px;
    letter-spacing: -1.3px;
  }
  .info-container {
    gap: 100px;
  }
  .info-image {
    width: 420px;
    flex: 1;
  }
}
@media screen and (max-width: 1024px) {
  .recycle-steps-section {
    padding: 60px 32px;
  }
  .steps-container {
    gap: 80px;
  }
  .step-item.active .step-label {
    font-size: 56px;
  }
  .mipan-regen-section {
    padding: 60px 60px 120px;
  }
  .mipan-title {
    font-size: 32px;
  }
  .mipan-description {
    font-size: 24px;
    line-height: 38px;
  }
  .mipan-cards {
    gap: 48px;
  }
  .card-image {
    width: 280px;
    height: 280px;
  }
  .card-text {
    font-size: 20px;
    line-height: 34px;
  }
  .card-list li {
    font-size: 20px;
    line-height: 34px;
  }
  .recycle-info-section {
    padding: 60px;
  }
  .info-container {
    gap: 64px;
  }
  .info-image {
    width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .recycle-steps-section {
    padding: 50px 24px;
    height: 720px;
  }
  .steps-container {
    flex-direction: column;
    gap: 50px;
  }
  .step-line {
    display: none;
  }
  .step-item {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .step-item.active .step-label {
    font-size: 40px;
  }
  .mipan-regen-section {
    padding: 50px 40px 100px;
  }
  .mipan-cards {
    gap: 40px;
  }
  .mipan-card {
    flex-direction: column;
  }
  .mipan-card.card-right {
    flex-direction: column-reverse;
  }
  .card-image {
    height: auto;
    aspect-ratio: 1;
  }
  .card-content {
    gap: 24px;
  }
  .card-text {
    font-size: 18px;
    line-height: 30px;
  }
  .card-list li {
    font-size: 18px;
    line-height: 30px;
    float: left;
  }
  .recycle-info-section {
    padding: 50px 40px;
  }
  .info-container {
    flex-direction: column;
    gap: 40px;
  }
  .info-image {
    width: 100%;
    max-width: 460px;
  }
  .info-cards {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .recycle-steps-section {
    padding: 40px 20px;
    justify-content: center;
    height: 650px;
  }
  .steps-nav {
    gap: 20px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  .step-item {
    flex-shrink: 0;
  }
  .step-item.active .step-label {
    font-size: 32px;
  }
  .step-label {
    font-size: 18px;
  }
  .mipan-regen-section {
    padding: 40px 20px 80px;
  }
  .mipan-container {
    gap: 40px;
  }
  .mipan-label {
    font-size: 20px;
  }
  .mipan-title {
    font-size: 24px;
  }
  .mipan-description {
    font-size: 18px;
    line-height: 28px;
    word-break: keep-all;
  }
  .mipan-cards {
    gap: 32px;
  }
  .card-image {
    width: 220px;
    height: 220px;
  }
  .card-text {
    font-size: 16px;
    line-height: 26px;
  }
  .card-list {
    padding-left: 28px;
  }
  .card-list li {
    font-size: 16px;
    line-height: 26px;
  }
  .recycle-info-section {
    padding: 40px 20px;
  }
  .info-container {
    gap: 40px;
  }
  .info-image {
    width: 100%;
    padding: 1rem;
  }
  .info-card {
    padding: 24px;
    gap: 24px;
  }
  .info-card .card-title {
    line-height: 24px;
  }
  .card-description {
    line-height: 24px;
  }
}
body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

.franchise-cost-section {
  background-color: #ffffff;
  padding: 120px 0;
}

.cost-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}
@media (max-width: 1280px) {
  .cost-container {
    padding: 0;
  }
}

.cost-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 0;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}
.cost-table thead tr th {
  background-color: #89846d;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  padding: 15px 20px;
  text-align: center;
  border-right: 8px solid #fff;
}
.cost-table thead tr th:last-child {
  border-right: none;
}
.cost-table tbody tr {
  transition: background-color 0.2s ease;
}
.cost-table tbody tr:hover {
  background-color: rgba(196, 162, 110, 0.05);
}
.cost-table tbody tr td {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #272727;
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
  background-color: #ffffff;
  border-right: 8px solid #fff;
  white-space: nowrap;
}
.cost-table tbody tr td.td-multiline {
  line-height: 1.4;
}
.cost-table tbody tr td:first-child, .cost-table tbody tr td:last-child {
  background-color: #ffffff;
}
.cost-table tbody tr td:last-child {
  border-right: none;
}
.cost-table tbody tr:last-child td {
  border-bottom: none;
}

.contact-finder-section {
  background-color: #f8f8f8;
  padding: 120px 0;
}

.contact-container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.selector-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selector-label {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #c4a26e;
  margin: 0;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  width: 100%;
  height: 56px;
  padding: 0 48px 0 20px;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #272727;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .custom-select {
    font-size: 16px;
  }
}
.custom-select:hover {
  border-color: #c4a26e;
}
.custom-select:focus {
  outline: none;
  border-color: #c4a26e;
  box-shadow: 0 0 0 3px rgba(196, 162, 110, 0.1);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-group .contact-info-label {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #c4a26e;
  margin: 0;
}
@media (max-width: 480px) {
  .contact-info-group .contact-info-label {
    font-size: 16px;
  }
}
.contact-info-group .contact-info-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #ededed;
  line-height: normal;
}
@media (max-width: 480px) {
  .contact-info-group .contact-info-box {
    font-size: 16px;
  }
}
.contact-info-group .contact-info-box .info-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-group .contact-info-box .info-label {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #939393;
}
.contact-info-group .contact-info-box .info-value {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #272727;
}
@media (max-width: 480px) {
  .contact-info-group .contact-info-box .info-value {
    font-size: 16px;
  }
}

@media screen and (max-width: 1440px) {
  .franchise-cost-section {
    padding: 70px 80px;
  }
  .contact-finder-section {
    padding: 70px 80px;
  }
}
@media screen and (max-width: 1024px) {
  .franchise-cost-section {
    padding: 60px;
  }
  .contact-finder-section {
    padding: 60px;
  }
  .cost-table thead th {
    font-size: 18px;
    padding: 12px 16px;
  }
  .cost-table thead th.col-category {
    min-width: 160px;
  }
  .cost-table thead th.col-brand {
    min-width: 300px;
  }
  .cost-table tbody td {
    font-size: 16px;
    padding: 14px 16px;
  }
}
@media screen and (max-width: 768px) {
  .franchise-cost-section {
    padding: 50px 40px;
  }
  .contact-finder-section {
    padding: 50px 40px;
  }
  .cost-container {
    gap: 32px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .cost-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cost-table {
    min-width: 800px;
  }
  .cost-table thead th {
    font-size: 16px;
    padding: 10px 12px;
  }
  .cost-table tbody td {
    font-size: 14px;
    padding: 12px;
  }
  .cost-table tbody td.td-multiline {
    line-height: 1.5;
  }
  .contact-container {
    gap: 32px;
  }
  .custom-select {
    height: 52px;
  }
  .contact-info-box {
    padding: 28px;
    gap: 20px;
  }
  .info-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .franchise-cost-section {
    padding: 40px 20px;
  }
  .contact-finder-section {
    padding: 80px 20px 80px;
  }
  .cost-container {
    gap: 28px;
  }
  .section-label {
    font-size: 18px;
  }
  .section-subtitle {
    font-size: 14px;
  }
  .cost-table {
    min-width: 700px;
  }
  .cost-table thead th {
    font-size: 14px;
    padding: 8px 10px;
  }
  .cost-table thead th.col-category {
    min-width: 120px;
  }
  .cost-table thead th.col-brand {
    min-width: 220px;
  }
  .cost-table tbody td {
    font-size: 13px;
    padding: 10px;
  }
  .cost-table tbody td.td-multiline {
    line-height: 1.6;
  }
  .contact-container {
    gap: 28px;
  }
  .selector-label {
    font-size: 16px;
  }
  .custom-select {
    height: 48px;
    padding: 0 40px 0 16px;
    font-size: 16px !important;
  }
  .select-arrow {
    width: 20px;
    height: 20px;
    right: 12px;
  }
  .contact-info-box {
    padding: 24px;
    gap: 18px;
  }
  .info-label {
    font-size: 14px;
  }
}
.cost-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.cost-table-wrapper::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 4px;
}

.cost-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #c4a26e;
  border-radius: 4px;
}
.cost-table-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #b58b4a;
}

.store-locator-section {
  background-color: #ffffff;
  padding: 80px 0px 0px;
  position: relative;
}
@media (max-width: 480px) {
  .store-locator-section {
    padding: 0;
  }
}

.locator-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 80px;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .locator-container {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .locator-container {
    padding: 0 20px;
    margin-top: 60px;
  }
}

.tab-content {
  display: flex;
  flex-direction: column;
}
.tab-content.off {
  display: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.content-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .content-box {
    gap: 0;
  }
}

.section-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #363636;
  text-align: center;
}
@media (max-width: 480px) {
  .section-description {
    font-size: 20px;
  }
}
.section-description p {
  margin: 0;
}

.search-filters {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .search-filters {
    margin-bottom: 20px;
  }
}

.filter-row {
  display: flex;
  gap: 9px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  margin-bottom: 20px;
}

.custom-select-wrapper {
  position: relative;
  flex: 1;
}

.custom-select {
  width: 100%;
  height: 64px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #333333;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select:hover {
  border-color: #89846d;
}
.custom-select:focus {
  outline: none;
  border-color: #89846d;
  box-shadow: 0 0 0 3px rgba(137, 132, 109, 0.1);
}
.custom-select:last-of-type {
  color: #000000;
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.search-button {
  width: 128px;
  height: 64px;
  background-color: #89846d;
  border: none;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.search-button:hover {
  background-color: #6d6956;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(137, 132, 109, 0.3);
}
.search-button:active {
  transform: translateY(0);
}

.location {
  display: flex;
  gap: 24px;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1440px;
  margin: auto;
  margin-bottom: 120px;
}
@media (max-width: 480px) {
  .location {
    margin-bottom: 40px;
  }
}
.location__map-area {
  width: 100%;
  height: 780px;
  flex: 2;
  background-color: #f5f3f1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .location__map-area {
    padding: 2rem 0;
    flex: unset;
    height: 520px;
  }
  .location__map-area img {
    transform: scale(0.7);
  }
}
@media (max-width: 480px) {
  .location__map-area {
    height: 400px;
  }
}
.location__map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-list-area {
  position: relative;
  display: flex;
  gap: 12px;
  flex: 3;
  height: 950px;
  overflow: hidden;
  flex-direction: column;
}
@media (max-width: 480px) {
  .store-list-area {
    padding: 0;
  }
}

.store-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 480px) {
  .store-list {
    padding: 0;
    overflow-y: visible;
  }
}
.store-list::-webkit-scrollbar {
  display: none;
}

#store-list-none {
  width: 100%;
  justify-content: center;
}

.no-results-message {
  text-align: center;
  padding: 80px 40px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.no-results-message p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 16px;
  color: #555555;
}
.no-results-message p:first-child {
  font-weight: 700;
  color: #333333;
  font-size: 18px;
  margin-bottom: 15px;
}

.custom-scrollbar {
  width: 8px;
  height: 100%;
  background-color: transparent;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}

.scrollbar-thumb {
  width: 8px;
  height: 312px;
  background-color: #bcbcbc;
  border-radius: 8px;
  position: absolute;
  top: 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.scrollbar-thumb:hover {
  background-color: #969696;
}

.store-card {
  background-color: #ffffff;
  border: 1px solid #bcbcbc;
  border-radius: 13px;
  padding: 23px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.store-card .store-card-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 480px) {
  .store-card .store-card-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}
.store-card .brand-logo {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
}
@media (max-width: 480px) {
  .store-card .brand-logo {
    width: 60px;
  }
}
.store-card .brand-logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-card .store-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.store-card .store-name {
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.72px;
  color: #111111;
  margin: 0;
}
.store-card .store-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-card .store-detail-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.store-card .store-detail-label {
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: #000000;
  width: 70px;
  flex-shrink: 0;
}
.store-card .store-detail-value {
  font-weight: 400;
  font-size: 15px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: #111111;
  flex: 1;
}
.store-card .store-card.hidden {
  display: none;
}

@media screen and (max-width: 1440px) {
  .map-area {
    width: 520px;
    height: 850px;
  }
  .map-image {
    width: 420px;
    height: 612px;
    left: 50px;
    top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .section-description {
    font-size: 20px;
    line-height: 32px;
  }
  .filter-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .custom-select-wrapper {
    flex: 1 1 calc(50% - 4px);
    min-width: 200px;
  }
  .custom-select {
    height: 56px;
    padding: 16px;
  }
  .content-area {
    flex-direction: column;
    gap: 24px;
  }
  .map-area {
    width: 100%;
    height: 500px;
  }
  .map-image {
    width: 80%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .store-list-area {
    height: 930px;
    padding: 24px 24px;
    flex: unset;
  }
}
@media screen and (max-width: 1024px) and (max-width: 480px) {
  .store-list-area {
    padding: 0;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .store-card-content {
    gap: 24px;
  }
  .store-name {
    font-size: 20px;
  }
  .detail-label,
  .detail-value {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .locator-container {
    gap: 20px;
  }
  .section-description {
    font-size: 18px;
    line-height: 28px;
  }
  .custom-select-wrapper {
    flex: 1 1 100%;
  }
  .custom-select {
    height: 52px;
  }
  .map-area {
    height: 400px;
  }
  .store-card {
    padding: 20px 16px;
  }
  .brand-logo {
    width: 80px;
  }
  .store-info {
    gap: 16px;
    width: 100%;
  }
  .store-name {
    font-size: 18px;
  }
  .detail-row {
    flex-direction: column;
    gap: 4px;
  }
  .detail-label {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .section-label {
    font-size: 18px;
  }
  .section-description {
    font-size: 16px;
    line-height: 26px;
  }
  .custom-select {
    height: 48px;
    padding: 12px;
  }
  .map-area {
    height: 320px;
  }
  .store-card {
    padding: 16px 12px;
  }
  .brand-logo {
    width: 60px;
  }
  .store-name {
    font-size: 16px;
  }
  .detail-label,
  .detail-value {
    font-size: 13px;
  }
  .custom-scrollbar {
    width: 6px;
    display: none;
  }
  .scrollbar-thumb {
    width: 6px;
    height: 200px;
  }
  .content-area {
    height: auto;
  }
}
body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

.location-section {
  background-color: #ffffff;
  position: relative;
  padding: 0 0 120px 0;
}

.location-container {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  min-height: 1000px;
}

.tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 31px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-left: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .tab-button {
    font-size: 16px;
    padding: 16px 28px;
  }
}
@media (max-width: 768px) {
  .tab-button {
    font-size: 15px;
    padding: 14px 24px;
    flex: 1;
    min-width: 120px;
  }
  .tab-button:nth-child(2) {
    border-left: 1px solid #ddd;
  }
}
@media (max-width: 480px) {
  .tab-button {
    font-size: 14px;
    padding: 12px 20px;
    min-width: 80px;
  }
}
.tab-button:first-child {
  border-left: 1px solid #ddd;
}
.tab-button.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  z-index: 1;
}
.tab-button:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
}
.tab-button:active {
  transform: scale(0.98);
}

.tab-content-wrapper {
  position: relative;
}

.tab-content {
  display: none;
  transition: opacity 0.4s ease;
}
.tab-content.active {
  display: block;
  opacity: 1;
}

.map-area {
  margin-top: 102px;
  width: 100%;
  height: 694px;
  background-color: #682121;
  position: relative;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-info-table {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 20px 10px;
  border-bottom: 1px solid #d9d9d9;
  transition: background-color 0.2s ease;
}
.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #000000;
  width: 140px;
  flex-shrink: 0;
}

.info-value {
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #333333;
  flex: 1;
  white-space: nowrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-content.active {
  animation: fadeIn 0.5s ease forwards;
}

@media screen and (max-width: 1440px) {
  .location-container {
    max-width: 1200px;
  }
  .map-area {
    margin-top: 80px;
    height: 600px;
  }
  .contact-info-table {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .location-container {
    padding: 0 40px;
    min-height: auto;
  }
  .tab-button {
    width: 110px;
    font-size: 16px;
    padding: 16px 12px;
  }
  .map-area {
    margin-top: 60px;
    height: 500px;
  }
  .contact-info-table {
    margin-top: 60px;
  }
  .info-label,
  .info-value {
    font-size: 18px;
  }
  .info-label {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .location-container {
    padding: 0 20px;
  }
  .tab-navigation {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-navigation::-webkit-scrollbar {
    display: none;
  }
  .tab-button {
    width: 100px;
    font-size: 15px;
    padding: 14px 10px;
  }
  .map-area {
    margin-top: 40px;
    height: 400px;
  }
  .contact-info-table {
    margin-top: 40px;
  }
  .info-row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  .info-label {
    width: auto;
    font-size: 16px;
  }
  .info-value {
    font-size: 16px;
    white-space: normal;
    word-break: keep-all;
  }
}
@media screen and (max-width: 480px) {
  .location-container {
    padding: 0 24px;
  }
  .tab-button {
    width: 90px;
    font-size: 14px;
    padding: 12px 8px;
  }
  .map-area {
    margin-top: 30px;
    height: 320px;
  }
  .contact-info-table {
    margin-top: 30px;
  }
  .info-row {
    padding: 14px 0;
  }
  .info-label {
    font-size: 15px;
  }
  .info-value {
    font-size: 15px;
  }
}
@media print {
  .tab-navigation {
    display: none;
  }
  .tab-content {
    display: block !important;
    opacity: 1 !important;
    page-break-after: always;
  }
  .map-area {
    height: 400px;
  }
}
body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
}

.brand-list-section {
  background-color: #ffffff;
  padding: 0;
  position: relative;
}

.brand-container {
  max-width: 1440px;
  margin: 120px auto;
  padding: 0 40px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 100px 24px;
  width: 100%;
}

.brand-card {
  position: relative;
  width: 100%;
  aspect-ratio: 488/599;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.brand-card:hover .brand-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.brand-card:hover .brand-image img {
  transform: scale(1.1);
}
.brand-card:hover .brand-content {
  transform: scale(1.05);
}
.brand-card:hover .brand-logo {
  transform: translateY(-5px);
}
.brand-card:active {
  transform: translateY(-4px) scale(1.01);
}

.brand-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
  z-index: 1;
}

.brand-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.brand-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.48px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  width: 140px;
}
.brand-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brand-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.brand-card:nth-child(1) {
  animation-delay: calc(1 * 0.08s);
}

.brand-card:nth-child(2) {
  animation-delay: calc(2 * 0.08s);
}

.brand-card:nth-child(3) {
  animation-delay: calc(3 * 0.08s);
}

.brand-card:nth-child(4) {
  animation-delay: calc(4 * 0.08s);
}

.brand-card:nth-child(5) {
  animation-delay: calc(5 * 0.08s);
}

.brand-card:nth-child(6) {
  animation-delay: calc(6 * 0.08s);
}

.brand-card:nth-child(7) {
  animation-delay: calc(7 * 0.08s);
}

.brand-card:nth-child(8) {
  animation-delay: calc(8 * 0.08s);
}

.brand-card:nth-child(9) {
  animation-delay: calc(9 * 0.08s);
}

@media screen and (max-width: 1440px) {
  .brand-container {
    max-width: 1200px;
    padding: 0 40px;
  }
  .brand-grid {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .brand-container {
    padding: 0 30px;
  }
  .brand-grid {
    gap: 16px;
  }
  .brand-label {
    font-size: 14px;
  }
  .brand-card[data-brand=venus] .brand-logo {
    width: 75px;
  }
  .brand-card[data-brand=wacoal] .brand-logo {
    width: 120px;
  }
  .brand-card[data-brand=salute] .brand-logo {
    width: 120px;
  }
  .brand-card[data-brand=motherpia] .brand-logo {
    width: 150px;
  }
  .brand-card[data-brand=rimamma] .brand-logo {
    width: 140px;
  }
  .brand-card[data-brand=scanbyme] .brand-logo {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .brand-container {
    padding: 0 20px;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .brand-card {
    border-radius: 12px;
  }
  .brand-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  .brand-label {
    font-size: 13px;
  }
  .brand-content {
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .brand-container {
    padding: 0 16px;
  }
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-card {
    border-radius: 10px;
    aspect-ratio: 4/3;
  }
  .brand-label {
    font-size: 14px;
  }
  .brand-content {
    gap: 14px;
  }
}
@media print {
  .brand-grid {
    display: block;
  }
  .brand-card {
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  .brand-overlay {
    background-color: transparent;
  }
}
.brand-detail-section {
  background-color: #ffffff;
  padding: 60px 0 100px;
  position: relative;
  min-height: 100vh;
}
.brand-detail-section.active {
  display: block;
}

.brand-detail-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.brand-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.brand-detail-image {
  width: 100%;
  max-width: 738px;
  aspect-ratio: 738/922;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.brand-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.brand-detail-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 56px;
}

.brand-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.brand-name-logo {
  display: flex;
  flex-direction: column;
  gap: 18.309px;
}

.brand-detail-name {
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.brand-detail-logo {
  display: flex;
  align-items: center;
  width: 140px;
}
.brand-detail-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}

.brand-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 24px;
  height: 24px;
}
.brand-icon:hover {
  transform: scale(1.1);
  color: rgba(0, 0, 0, 0.6);
}
.brand-icon:active {
  transform: scale(0.95);
}

.brand-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 34.6px;
  letter-spacing: -0.6px;
  color: #000000;
  margin: 0;
  word-break: keep-all;
}

@media screen and (max-width: 1440px) {
  .brand-detail-container {
    max-width: 1200px;
    padding: 0 40px;
  }
  .brand-detail-content {
    gap: 60px;
  }
  .brand-description {
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .brand-detail-section {
    padding: 40px 0 80px;
  }
  .brand-detail-container {
    padding: 0 30px;
  }
  .brand-detail-content {
    gap: 40px;
  }
  .brand-detail-info {
    gap: 40px;
  }
  .brand-detail-name {
    font-size: 18px;
  }
  .brand-description {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .brand-detail-section {
    padding: 30px 0 60px;
  }
  .brand-detail-container {
    padding: 0 20px;
  }
  .brand-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-detail-image {
    max-width: 100%;
    justify-self: center;
  }
  .brand-detail-header {
    flex-direction: column;
    gap: 30px;
  }
  .brand-icons {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .brand-detail-section {
    padding: 20px 0 40px;
  }
  .brand-detail-container {
    padding: 0 16px;
  }
  .brand-detail-content {
    gap: 30px;
  }
  .brand-detail-info {
    gap: 30px;
  }
  .brand-detail-header {
    gap: 20px;
  }
  .brand-name-logo {
    gap: 12px;
  }
  .brand-detail-name {
    font-size: 16px;
  }
  .brand-description {
    font-size: 14px;
    line-height: 24px;
  }
  .brand-icons {
    gap: 16px;
  }
  .brand-icons svg {
    width: 20px;
    height: 20px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brand-detail-section.active {
  animation: fadeIn 0.4s ease;
}
.brand-detail-section.active .brand-detail-content {
  animation: slideInUp 0.6s ease 0.2s both;
}

body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-section {
  background-color: #f7f7f7;
  padding: 56px 0;
  position: relative;
}

.news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.filter-tabs {
  display: flex;
  align-items: center;
}

.tab-button {
  padding: 18px 15px;
  width: 118px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid gainsboro;
  border-left: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tab-button:first-child {
  border-left: 1px solid gainsboro;
}
.tab-button.active {
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  border-color: #000000;
  z-index: 1;
}
.tab-button:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
}
.tab-button:active {
  transform: scale(0.98);
}

.search-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-category {
  position: relative;
}

.category-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 107px;
  height: 54.433px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-dropdown svg {
  transition: transform 0.3s ease;
}
.category-dropdown:hover {
  border-color: silver;
}
.category-dropdown.active svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 107px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.dropdown-item.active {
  font-weight: 600;
  color: #000000;
}
.dropdown-item:first-child {
  border-radius: 5px 5px 0 0;
}
.dropdown-item:last-child {
  border-radius: 0 0 5px 5px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 364px;
  height: 54.433px;
  padding: 15px;
  padding-right: 50px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.search-input::placeholder {
  color: #555555;
}
.search-input:focus {
  outline: none;
  border-color: #a6a6a6;
}

.news-search-button {
  position: absolute;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}
.news-search-button svg {
  transition: transform 0.3s ease;
}
.news-search-button:hover {
  transform: scale(1.1);
}
.news-search-button:active {
  transform: scale(0.95);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 93px 39px;
  width: 100%;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card:hover .card-image img {
  transform: scale(1.05);
}
.news-card:active {
  transform: translateY(-4px);
}
.news-card.hidden {
  display: none;
}

.card-image {
  position: relative;
  width: 100%;
  height: 322px;
  background-color: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 7px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #ffffff;
  background-color: silver;
  border-radius: 4px;
  z-index: 1;
}

.news-badge {
  background-color: silver;
}

.event-badge {
  background-color: #a2986e;
}

.news-card-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  margin-top: 16px;
}

.card-title {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.72px;
  color: #000000;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: #838383;
  margin: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 30px 0;
}

.page-button {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.42px;
  color: #8a8a8a;
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-button:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #c5c5c5;
}
.page-button.active {
  font-weight: 600;
  color: #ffffff;
  background-color: #b0897e;
  border-color: #98766d;
}
.page-button:active {
  transform: scale(0.95);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-card {
  animation: fadeIn 0.5s ease forwards;
}

.news-card:nth-child(1) {
  animation-delay: calc(1 * 0.05s);
}

.news-card:nth-child(2) {
  animation-delay: calc(2 * 0.05s);
}

.news-card:nth-child(3) {
  animation-delay: calc(3 * 0.05s);
}

.news-card:nth-child(4) {
  animation-delay: calc(4 * 0.05s);
}

.news-card:nth-child(5) {
  animation-delay: calc(5 * 0.05s);
}

.news-card:nth-child(6) {
  animation-delay: calc(6 * 0.05s);
}

.news-card:nth-child(7) {
  animation-delay: calc(7 * 0.05s);
}

.news-card:nth-child(8) {
  animation-delay: calc(8 * 0.05s);
}

.news-card:nth-child(9) {
  animation-delay: calc(9 * 0.05s);
}

@media screen and (max-width: 1440px) {
  .news-container {
    max-width: 1200px;
    padding: 0 60px;
  }
  .news-grid {
    gap: 60px 30px;
  }
  .card-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .news-container {
    padding: 0 40px;
    gap: 60px;
  }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .filter-tabs {
    width: 100%;
  }
  .tab-button {
    flex: 1;
    width: auto;
  }
  .search-area {
    width: 100%;
  }
  .search-input {
    flex: 1;
    width: auto;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 25px;
  }
  .card-title {
    font-size: 20px;
    line-height: 28px;
  }
  .card-date {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .news-section {
    padding: 40px 0;
    margin-top: 40px;
  }
  .news-container {
    padding: 0 32px;
    gap: 40px;
  }
  .tab-button {
    font-size: 16px;
    padding: 14px 12px;
  }
  .category-dropdown,
  .search-input {
    font-size: 16px;
    height: 48px;
  }
  .category-dropdown {
    width: 90px;
  }
  .news-grid {
    gap: 40px 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .card-image {
    height: 360px;
  }
}
@media screen and (max-width: 480px) {
  .news-section {
    padding: 30px 0;
    margin-top: 30px;
  }
  .news-container {
    padding: 0 20px;
    gap: 30px;
  }
  .news-header {
    gap: 20px;
  }
  .tab-button {
    font-size: 14px;
    padding: 12px 10px;
    min-width: 80px;
  }
  .search-area {
    flex-direction: column;
    gap: 10px;
  }
  .category-dropdown {
    width: 100%;
  }
  .search-input-wrapper {
    width: 100%;
  }
  .search-input {
    width: 100%;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-image {
    height: 250px;
    border-radius: 8px;
  }
  .news-card-content {
    padding: 0 10px;
    gap: 10px;
  }
  .card-title {
    font-size: 16px;
    line-height: 24px;
  }
  .card-date {
    font-size: 13px;
  }
  .card-badge {
    top: 15px;
    left: 15px;
    font-size: 13px;
  }
  .pagination {
    padding: 20px 0;
  }
  .page-button {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
@media print {
  .news-section {
    background-color: white;
  }
  .filter-tabs,
  .search-area,
  .pagination {
    display: none;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-card {
    page-break-inside: avoid;
  }
}
.news-detail-section {
  background-color: #f7f7f7;
  padding: 56px 0;
  position: relative;
}
.news-detail-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.news-detail-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.detail-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.detail-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.28px;
  color: #000000;
  margin: 0;
}

.detail-date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1.44px;
  color: #8e8e8e;
  margin: 0;
}

.detail-image-wrapper {
  width: 100%;
  max-width: 800px;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto;
}
.detail-image-wrapper img {
  width: 100%;
}

.detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.back-to-list-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 21px;
  width: 99px;
  height: 50px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  background-color: #89191c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: pre;
}
.back-to-list-button:hover {
  background-color: #731518;
}
.back-to-list-button:active {
  transform: scale(0.98);
}

@media screen and (max-width: 1440px) {
  .news-detail-container {
    padding: 0 60px;
  }
  .detail-wrapper {
    padding: 0 60px;
    gap: 80px;
  }
  .detail-image-wrapper {
    width: 100%;
    max-width: 680px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .news-detail-container {
    padding: 0 40px;
  }
  .detail-wrapper {
    padding: 0 40px;
    gap: 60px;
  }
  .detail-title {
    font-size: 28px;
  }
  .detail-body {
    font-size: 16px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .news-detail-section {
    padding: 40px 0;
    margin-top: 40px;
  }
  .news-detail-container {
    padding: 0 20px;
  }
  .detail-wrapper {
    padding: 0;
    gap: 50px;
  }
  .detail-header {
    gap: 30px;
  }
  .detail-title {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
  .detail-date {
    font-size: 14px;
  }
  .detail-body {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .news-detail-section {
    padding: 0;
    margin-top: 30px;
  }
  .news-detail-container {
    padding: 0 16px;
  }
  .detail-wrapper {
    padding: 0 16px;
    gap: 40px;
  }
  .detail-header {
    gap: 20px;
  }
  .detail-title {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  .detail-date {
    font-size: 13px;
  }
  .detail-image-wrapper {
    width: 100%;
    height: auto;
  }
  .detail-body {
    font-size: 14px;
    line-height: 26px;
  }
  .detail-footer {
    gap: 30px;
  }
  .back-to-list-button {
    width: 90px;
    height: 45px;
    font-size: 14px;
    padding: 14px 18px;
  }
}
.notice-container {
  max-width: 1564px;
  margin: 0 auto;
  padding: 0 177px;
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.total-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  line-height: normal;
  white-space: nowrap;
}
.total-count .count-label {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  color: #787878;
}
.total-count .count-number {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000000;
}

.search-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-category {
  position: relative;
}

.category-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 107px;
  height: 54.433px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-dropdown svg {
  transition: transform 0.3s ease;
}
.category-dropdown:hover {
  border-color: silver;
}
.category-dropdown.active svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 107px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.dropdown-item.active {
  font-weight: 600;
  color: #000000;
}
.dropdown-item:first-child {
  border-radius: 5px 5px 0 0;
}
.dropdown-item:last-child {
  border-radius: 0 0 5px 5px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 364px;
  height: 54.433px;
  padding: 15px;
  padding-right: 50px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.search-input::placeholder {
  color: #555555;
}
.search-input:focus {
  outline: none;
  border-color: #a6a6a6;
}

.notice-search-button {
  position: absolute;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}
.notice-search-button svg {
  transition: transform 0.3s ease;
}
.notice-search-button:hover {
  transform: scale(1.1);
}
.notice-search-button:active {
  transform: scale(0.95);
}

.notice-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 45px;
  background-color: #f9f9f9;
  border-radius: 4px;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #707070;
  white-space: nowrap;
}
.table-header .header-title {
  flex: 1;
}
.table-header .header-date {
  width: 88px;
  text-align: center;
}

.table-body {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 45px;
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.table-row:hover {
  background-color: #f5f5f5;
}
.table-row:active {
  background-color: #ededed;
}
.table-row .row-title {
  flex: 1;
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
.table-row .row-date {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #707070;
  text-align: right;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 30px 0;
}

.page-button {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.42px;
  color: #8a8a8a;
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-button:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #c5c5c5;
}
.page-button.active {
  font-weight: 600;
  color: #ffffff;
  background-color: #b0897e;
  border-color: #98766d;
}
.page-button:active {
  transform: scale(0.95);
}

.notice-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.detail-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-header {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
}

.detail-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #707070;
}

.detail-body {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 60px;
  padding: 0 40px;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .detail-body {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .detail-body {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .detail-body {
    padding: 0;
  }
}
.detail-body p {
  margin-bottom: 0;
}
.detail-body ul {
  padding-left: 20px;
  margin: 0;
}
.detail-body ul li {
  margin-bottom: 8px;
  color: #555555;
}

.detail-attachments {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 40px;
}

.attachments-title {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

.attachment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.attachment-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.attachment-item svg {
  flex-shrink: 0;
}
.attachment-item .file-size {
  color: #787878;
  font-size: 14px;
  font-weight: 400;
}
.attachment-item:hover {
  background-color: #f5f5f5;
  border-color: silver;
}
.attachment-item:active {
  transform: scale(0.98);
}

.detail-navigation {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: #d9d9d9;
  border-radius: 5px;
  overflow: hidden;
}

.nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 30px;
  background-color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-item:hover {
  background-color: #f5f5f5;
}
.nav-item .nav-label {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #787878;
}
.nav-item .nav-title {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.table-row {
  animation: fadeIn 0.5s ease forwards;
}

.table-row:nth-child(1) {
  animation-delay: calc(1 * 0.03s);
}

.table-row:nth-child(2) {
  animation-delay: calc(2 * 0.03s);
}

.table-row:nth-child(3) {
  animation-delay: calc(3 * 0.03s);
}

.table-row:nth-child(4) {
  animation-delay: calc(4 * 0.03s);
}

.table-row:nth-child(5) {
  animation-delay: calc(5 * 0.03s);
}

.table-row:nth-child(6) {
  animation-delay: calc(6 * 0.03s);
}

.table-row:nth-child(7) {
  animation-delay: calc(7 * 0.03s);
}

.table-row:nth-child(8) {
  animation-delay: calc(8 * 0.03s);
}

.table-row:nth-child(9) {
  animation-delay: calc(9 * 0.03s);
}

.table-row:nth-child(10) {
  animation-delay: calc(10 * 0.03s);
}

@media screen and (max-width: 1440px) {
  .notice-container {
    max-width: 1200px;
    padding: 0 60px;
  }
  .detail-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .notice-container {
    padding: 0 40px;
    gap: 60px;
  }
  .notice-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .search-area {
    width: 100%;
  }
  .search-input {
    flex: 1;
    width: auto;
  }
  .table-header {
    padding: 18px 30px;
    font-size: 16px;
  }
  .table-row {
    padding: 25px 30px;
  }
  .table-row .row-title {
    font-size: 20px;
  }
  .table-row .row-date {
    font-size: 16px;
  }
  .notice-detail-container {
    padding: 0 40px;
  }
  .detail-content {
    padding: 40px;
  }
  .detail-title {
    font-size: 26px;
  }
  .detail-body {
    font-size: 16px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .notice-container {
    padding: 0 20px;
    gap: 40px;
  }
  .total-count {
    font-size: 18px;
  }
  .category-dropdown,
  .search-input {
    font-size: 16px;
    height: 48px;
  }
  .category-dropdown {
    width: 90px;
  }
  .table-header {
    padding: 15px 20px;
    font-size: 15px;
  }
  .table-header .header-date {
    width: 70px;
  }
  .table-row {
    padding: 20px;
  }
  .table-row .row-title {
    font-size: 18px;
  }
  .table-row .row-date {
    font-size: 15px;
  }
  .notice-detail-container {
    padding: 0 20px;
  }
  .detail-content {
    padding: 30px;
  }
  .detail-title {
    font-size: 24px;
  }
  .detail-body {
    font-size: 15px;
  }
  .attachments-title {
    font-size: 16px;
  }
  .attachment-item {
    font-size: 14px;
  }
  .nav-item {
    padding: 16px 20px;
  }
  .nav-item .nav-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .notice-container {
    padding: 0 16px;
    gap: 30px;
  }
  .total-count {
    font-size: 16px;
  }
  .search-area {
    flex-direction: column;
    gap: 10px;
  }
  .search-area .search-category {
    width: 100%;
  }
  .category-dropdown {
    width: 100%;
  }
  .search-input-wrapper {
    width: 100%;
  }
  .search-input {
    width: 100%;
  }
  .table-header {
    padding: 12px 16px;
    font-size: 14px;
  }
  .table-header .header-date {
    width: auto;
    min-width: 60px;
  }
  .table-row {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .table-row .row-title {
    font-size: 16px;
    padding-right: 0;
    white-space: normal;
  }
  .table-row .row-date {
    font-size: 14px;
    text-align: left;
  }
  .pagination {
    padding: 20px 0;
  }
  .page-button {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .notice-detail-container {
    padding: 0 20px;
  }
  .detail-content {
    padding: 24px 0;
    border-radius: 6px;
  }
  .detail-header {
    padding-bottom: 0;
  }
  .detail-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .detail-meta {
    font-size: 14px;
    padding-bottom: 1rem;
  }
  .detail-body {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0;
  }
  .detail-attachments {
    padding: 20px;
  }
  .attachment-item {
    font-size: 13px;
    padding: 10px 14px;
  }
  .nav-item {
    padding: 14px 16px;
  }
  .nav-item .nav-label {
    font-size: 13px;
  }
  .nav-item .nav-title {
    font-size: 14px;
  }
}
@media print {
  .search-area,
  .pagination,
  .back-button {
    display: none;
  }
  .table-row {
    page-break-inside: avoid;
  }
  .detail-content {
    box-shadow: none;
  }
  .detail-navigation {
    display: none;
  }
}
body {
  font-family: "Pretendard", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ethics-section {
  padding: 0;
  position: relative;
}

.ethics-container {
  max-width: 1440px;
  margin: 120px auto;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 768px) {
  .ethics-container {
    padding: 0 32px;
  }
}
@media (max-width: 480px) {
  .ethics-container {
    padding: 0 20px;
    margin: 80px 0;
  }
}

.tabs-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.ethics-tab-content {
  display: none;
  padding: 0;
}
.ethics-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 100px;
}
@media (max-width: 480px) {
  .content-wrapper {
    padding: 0;
    margin-top: 40px;
  }
}

.ethics-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ethics-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.72px;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}

.ethics-description {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.6px;
  color: #212529;
  margin: 0;
}

.ethics-box {
  background-color: rgba(240, 240, 240, 0.5);
  border-radius: 10px;
  padding: 65px 84px;
  width: 100%;
}

.ethics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 8px;
}

.item-number {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #000000;
  margin: 0;
  display: inline-block;
  white-space: nowrap;
}

.item-text {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.54px;
  color: #000;
  margin: 0 0 0 6px;
  white-space: pre-wrap;
  display: inline-block;
}

#ethicsContentWrapper.is-code-active #ethicsBoxContainer .ethics-list .ethics-item .item-text {
  font-weight: 500;
  color: #495057;
}

.ethics-item-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}
.ethics-item-list li {
  line-height: normal;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 8px;
}
.ethics-item-list li span {
  font-size: 28px;
  transform: translateY(5px);
  margin-left: 12px;
}
.ethics-item-list li p {
  font-size: 18px;
  font-weight: 500;
  color: #212529;
  line-height: 30px;
  color: #495057;
}
@media (max-width: 1280px) {
  .ethics-item-list li p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .ethics-item-list li p {
    font-size: 15px;
  }
}

.report-select-section {
  display: none;
}
.report-select-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.select-wrapper {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 100px;
}
@media (max-width: 480px) {
  .select-wrapper {
    gap: 40px;
    padding: 0;
    margin-top: 40px;
  }
}

.select-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.select-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-align: center;
  word-break: keep-all;
  margin: 0;
}
.select-title .only-md {
  display: none;
}

.select-description {
  margin-top: 0px;
}
@media (max-width: 480px) {
  .select-description {
    margin-top: 0;
    padding: 0 40px;
  }
}
.select-description p {
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.66px;
  color: #343a40;
  text-align: center;
  margin: 0;
  word-break: keep-all;
}

.select-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .select-buttons {
    margin-top: 100px;
  }
}
@media (max-width: 480px) {
  .select-buttons {
    margin-top: 0;
  }
}

.select-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 100px;
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.select-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.select-button:active {
  transform: translateY(0);
}

.real-name-button {
  background-color: #2c2c2c;
}
.real-name-button:hover {
  background-color: #1f1f1f;
}

.anonymous-button {
  background-color: #aca376;
}
.anonymous-button:hover {
  background-color: #9a9168;
}

.report-form-section {
  display: none;
  padding: 60px 0 100px 0;
}
@media (max-width: 480px) {
  .report-form-section {
    padding: 60px 0 0;
  }
}
.report-form-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.form-title {
  font-family: "Pretendard", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.form-notice {
  padding: 20px;
  background-color: rgba(255, 243, 205, 0.3);
  border-left: 4px solid #aca376;
  margin-bottom: 40px;
}
.form-notice p {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 8px 0;
}
.form-notice p:last-child {
  margin-bottom: 0;
}

.report-categories {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}

.category-title {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}
.category-grid:last-child {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.category-item {
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.category-item:hover {
  border-color: #aca376;
  background-color: rgba(172, 163, 118, 0.05);
}

.category-name {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px 0;
}

.category-desc {
  font-family: "Pretendard", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #666666;
  margin: 0;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section {
  margin-bottom: 40px;
}
.form-section:last-child {
  margin-bottom: 0;
}

.section-desc {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 16px 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.check-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 8px;
}
.check-box span {
  width: 8px;
  height: 8px;
  display: block;
  background-color: #adb5bd;
  border-radius: 100%;
}
.check-box p {
  font-size: 15px;
  color: #343a40;
  font-weight: 400;
  line-height: 24px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.form-input::placeholder {
  color: #999999;
}
.form-input:focus {
  outline: none;
  border-color: #000000;
}

.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  resize: vertical;
  transition: all 0.3s ease;
}
.form-textarea::placeholder {
  color: #999999;
}
.form-textarea:focus {
  outline: none;
  border-color: #000000;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.submit-button:hover {
  background-color: #333333;
}
.submit-button:active {
  transform: scale(0.98);
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.radio-label input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.radio-label span {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.form-note {
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 16px 0 0 0;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

.form-warning {
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e74c3c;
  margin: 8px 0 0 0;
}

.agreement-buttons {
  display: flex;
  gap: 16px;
}

.agreement-button {
  padding: 12px 30px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.agreement-button:hover {
  border-color: #000000;
  color: #000000;
}
.agreement-button.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.result-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}
.result-info p {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

.result-login-section {
  display: none;
  padding: 0;
}
.result-login-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.result-login-wrapper {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}
@media (max-width: 480px) {
  .result-login-wrapper {
    padding: 0;
  }
}

.result-login-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.result-login-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin: 0;
  text-align: center;
}

.result-login-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.result-login-desc p {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.66px;
  color: #343a40;
  text-align: center;
  margin: 0;
  word-break: keep-all;
}

.result-login-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 460px;
  width: 100%;
}

.result-login-button {
  width: 100%;
  height: 52px;
  padding: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.45px;
  color: #ffffff;
  background-color: #aca376;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.result-login-button:hover {
  background-color: #9a9168;
}
.result-login-button:active {
  transform: scale(0.98);
}

.result-table-section {
  display: none;
  padding: 80px 0 100px 0;
}
@media (max-width: 480px) {
  .result-table-section {
    padding: 0;
  }
}
.result-table-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.result-table-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1280px) {
  .result-table-wrapper {
    padding: 0;
  }
}

.result-table-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 60px;
}

.result-table-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin: 0;
  text-align: center;
}

.result-table-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.result-table-desc p {
  font-family: "Pretendard", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: -0.66px;
  color: #000000;
  text-align: center;
  margin: 0;
}

.result-table-container {
  width: 100%;
}
@media (max-width: 1280px) {
  .result-table-container {
    overflow-x: auto;
  }
}

.result-table {
  width: 100%;
  word-break: keep-all;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .result-table {
    width: 800px;
  }
}

.result-table-header-wrap {
  background-color: #f9f9f9;
  border-radius: 4px;
}

.result-table-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 21px 45px;
}
@media (max-width: 1280px) {
  .result-table-row {
    padding: 16px 20px;
    gap: 12px;
  }
}

.table-cell {
  font-family: "Pretendard", sans-serif;
}

.header-cell {
  font-size: 18px;
  font-weight: 600;
  color: #707070;
  text-align: center;
}

.table-body {
  width: 100%;
}

.table-body-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 45px;
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  min-height: 89px;
}
@media (max-width: 1280px) {
  .table-body-row {
    padding: 16px 20px;
    gap: 12px;
  }
}

.body-cell {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.body-cell.muted {
  color: #707070;
}

.cell-with-status {
  display: flex;
  align-items: center;
  gap: 13px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 7px;
  border-radius: 4px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.status-pending {
  background-color: #f1f5f9;
  color: #64748b;
}

.status-completed {
  background-color: #eff6ff;
  color: #2563eb;
}

.status-cancelled {
  background-color: #fef2f2;
  color: #dc2626;
}

.cancel-link {
  font-family: "Pretendard", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #707070;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cancel-link:hover {
  color: #000000;
}

.result-empty-section {
  display: none;
  padding: 119px 0 100px 0;
}
.result-empty-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.result-empty-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.result-empty-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 100px;
}
.result-empty-header svg {
  margin-bottom: 1rem;
}

.result-empty-title {
  font-family: "Pretendard", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin: 0;
  text-align: center;
}

.result-empty-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.result-empty-desc p {
  font-family: "Pretendard", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: -1.04px;
  color: #000000;
  margin: 0;
  text-align: center;
}

.result-empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 80px 0;
}

.empty-message {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #999999;
  margin: 0;
}

.empty-sub-message {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #cccccc;
  margin: 0;
}

.cancel-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cancel-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 460px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  animation: modalFadeIn 0.3s ease;
}

.modal-title {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px 0;
  text-align: center;
}

.modal-body {
  margin-bottom: 20px;
}
.modal-body p {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  text-align: center;
}
.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-question {
  margin-bottom: 30px;
}
.modal-question p {
  font-family: "Pretendard", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  text-align: center;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.modal-button {
  flex: 1;
  padding: 14px 20px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-button {
  background-color: #aca376;
  color: #ffffff;
}
.confirm-button:hover {
  background-color: #9a9168;
}

.reject-button {
  background-color: #2c2c2c;
  color: #ffffff;
}
.reject-button:hover {
  background-color: #1f1f1f;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 1440px) {
  .ethics-box {
    padding: 60px 70px;
  }
}
@media screen and (max-width: 1024px) {
  .ethics-tab-content {
    padding: 100px 0 80px 0;
  }
  .content-wrapper {
    max-width: 100%;
    padding: 0 40px;
    gap: 60px;
  }
  .ethics-title {
    font-size: 22px;
  }
  .ethics-description {
    font-size: 18px;
    line-height: 28px;
  }
  .ethics-box {
    padding: 50px 60px;
  }
  .item-number,
  .item-text {
    font-size: 16px;
  }
  .select-title {
    font-size: 32px;
  }
  .select-description p {
    font-size: 18px;
    line-height: 32px;
  }
  .result-login-title,
  .result-table-title,
  .result-empty-title {
    font-size: 38px;
  }
  .result-login-desc p,
  .result-table-desc p,
  .result-empty-desc p {
    font-size: 15px;
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .tabs-wrapper {
    flex-wrap: wrap;
  }
  .ethics-tab-content {
    padding: 80px 0 60px 0;
  }
  .content-wrapper {
    padding: 0;
    gap: 50px;
  }
  .ethics-header {
    gap: 30px;
  }
  .ethics-title {
    font-size: 20px;
  }
  .ethics-description {
    font-size: 16px;
    line-height: 26px;
  }
  .ethics-box {
    padding: 40px 50px;
  }
  .ethics-list {
    gap: 15px;
  }
  .ethics-item {
    gap: 12px;
  }
  .item-number,
  .item-text {
    font-size: 15px;
  }
  .select-title {
    font-size: 28px;
  }
  .select-title .only-md {
    display: block;
  }
  .select-description p {
    font-size: 18px;
    line-height: 30px;
  }
  .select-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .select-button {
    padding: 16px 40px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-grid:last-child {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .result-login-title,
  .result-table-title,
  .result-empty-title {
    font-size: 28px;
  }
  .result-login-desc p,
  .result-table-desc p,
  .result-empty-desc p {
    font-size: 15px;
    line-height: 28px;
  }
  .table-row,
  .table-body-row {
    padding: 16px 20px;
    gap: 12px;
  }
  .header-cell {
    font-size: 14px;
  }
  .body-cell {
    font-size: 16px;
  }
  .cancel-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .ethics-tab-content {
    padding: 0 0 40px;
  }
  .content-wrapper {
    gap: 40px;
  }
  .ethics-header {
    gap: 24px;
  }
  .ethics-title {
    font-size: 24px !important;
  }
  .ethics-description {
    font-size: 16px;
    line-height: 30px;
  }
  .ethics-box {
    padding: 30px 24px;
    border-radius: 8px;
  }
  .ethics-list {
    gap: 12px;
  }
  .ethics-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .item-number {
    font-size: 14px;
  }
  .item-text {
    font-size: 14px;
    white-space: normal;
  }
  .select-title {
    font-size: 24px;
  }
  .select-title .only-md {
    display: none;
  }
  .select-description p {
    font-size: 16px;
    line-height: 30px;
  }
  .select-button {
    font-size: 18px;
    line-height: 32px;
  }
  .form-group {
    gap: 10px;
  }
  .form-group label {
    font-size: 15px;
  }
  .form-input,
  .form-textarea {
    font-size: 15px;
    padding: 12px 16px;
  }
  .submit-button {
    font-size: 15px;
    padding: 14px 36px;
    width: 100%;
  }
  .result-login-title,
  .result-table-title,
  .result-empty-title {
    font-size: 24px !important;
  }
  .result-login-desc p,
  .result-table-desc p,
  .result-empty-desc p {
    font-size: 16px !important;
    line-height: 30px !important;
  }
  .result-info {
    padding: 16px;
  }
  .result-info p {
    font-size: 13px;
  }
  .table-cell {
    width: 100%;
    text-align: center;
  }
  .header-cell {
    font-size: 12px;
  }
  .body-cell {
    font-size: 14px;
  }
  .empty-message {
    font-size: 20px;
  }
  .empty-sub-message {
    font-size: 16px;
  }
  .modal-content {
    padding: 30px 24px;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-body p {
    font-size: 14px;
  }
  .modal-question p {
    font-size: 16px;
  }
  .modal-buttons {
    flex-direction: column;
  }
  .modal-button {
    width: 100%;
  }
}
@media print {
  .ethics-section {
    background-color: white;
  }
  .tabs-wrapper {
    display: none;
  }
  .ethics-tab-content {
    display: block !important;
    padding: 20px 0;
  }
  .ethics-box {
    background-color: transparent;
    border: 1px solid #cccccc;
  }
  .submit-button {
    display: none;
  }
  .cancel-modal {
    display: none !important;
  }
}
.ethics-complaint-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 0 0 80px;
}
@media (max-width: 480px) {
  .ethics-complaint-header {
    margin: 0 0 40px;
  }
}

.ethics-complaint-title {
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin: 0;
  text-align: center;
}
@media (max-width: 480px) {
  .ethics-complaint-title {
    font-size: 24px;
  }
}

.ethics-complaint-desc {
  display: flex;
  flex-direction: column;
  gap: 0;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .ethics-complaint-desc {
    padding: 0 20px;
  }
}
.ethics-complaint-desc p {
  font-family: "Pretendard", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: -0.66px;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media (max-width: 480px) {
  .ethics-complaint-desc p {
    font-size: 18px;
    line-height: 32px;
  }
}

.ethics-real-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  position: relative;
}
@media (max-width: 1280px) {
  .ethics-real-container {
    padding: 40px 20px 80px;
  }
}
@media (max-width: 480px) {
  .ethics-real-container {
    padding: 40px 0 0;
  }
}

.ethics-real-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  margin-bottom: 40px;
}
.ethics-real-back-button svg {
  transition: transform 0.3s ease;
}
.ethics-real-back-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #000000;
}
.ethics-real-back-button:hover svg {
  transform: translateX(-4px);
}

.ethics-real-section {
  margin-bottom: 80px;
}
.ethics-real-section:last-child {
  margin-bottom: 0;
}

.ethics-real-section-title {
  font-family: "Pretendard", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.69px;
  color: #000000;
  margin: 0 0 30px 0;
}
@media (max-width: 1280px) {
  .ethics-real-section-title {
    font-size: 20px;
  }
}

.ethics-real-privacy-box {
  width: 100%;
}

.ethics-real-privacy-header {
  margin-bottom: 25px;
}

.ethics-real-privacy-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .ethics-real-privacy-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .ethics-real-privacy-title {
    font-size: 16px;
  }
}

.ethics-real-required {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #d10000;
  position: relative;
}
.ethics-real-required::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d10000;
  position: absolute;
  right: -8px;
  top: 0;
}

.ethics-real-privacy-table {
  width: 100%;
  border: 1px solid #000000;
  border-bottom: none;
  margin-bottom: 30px;
}

.ethics-real-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eaeaea;
}

.ethics-real-table-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
}

.ethics-real-table-cell {
  padding: 21px 30px;
  font-family: "Pretendard", sans-serif;
  border-right: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: normal;
}
@media (max-width: 480px) {
  .ethics-real-table-cell {
    padding: 20px !important;
  }
}
.ethics-real-table-cell:last-child {
  border-right: none;
}
.ethics-real-table-header .ethics-real-table-cell {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.ethics-real-table-body .ethics-real-table-cell {
  font-size: 16px;
  font-weight: 500;
  color: #3b3b3b;
  padding: 34px 30px;
  flex-direction: column;
  gap: 5px;
}
.ethics-real-table-body .ethics-real-table-cell p {
  margin: 0;
  line-height: 1.5;
}

.ethics-real-privacy-agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ethics-real-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ethics-real-checkbox {
  display: none;
}

.ethics-real-checkbox-custom {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.ethics-real-checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f3f3f3;
  transition: all 0.3s ease;
}

.ethics-real-checkbox:checked + .ethics-real-checkbox-custom {
  background-color: #191919;
  border-color: #191919;
}
.ethics-real-checkbox:checked + .ethics-real-checkbox-custom::after {
  background-color: #f3f3f3;
}

.ethics-real-checkbox-text {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
}

.ethics-real-privacy-note {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a5a5a;
  margin: 0;
}

.ethics-real-notice-box {
  background-color: #fcfcfc;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 30px 20px;
}

.ethics-real-notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ethics-real-notice-list li {
  position: relative;
  padding-left: 24px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  margin-bottom: 0;
}
.ethics-real-notice-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
}

.ethics-real-form {
  display: flex;
  flex-direction: column;
  gap: 51px;
}

.ethics-real-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.ethics-real-form-full {
  width: 100%;
}

.ethics-real-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ethics-real-label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  width: fit-content;
}

.ethics-real-required-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d10000;
  position: absolute;
  right: -8px;
  top: 0;
}

.ethics-real-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.ethics-real-input::placeholder {
  color: #9c9c9c;
}
.ethics-real-input:focus {
  outline: none;
  border-color: #000000;
  background-color: #ffffff;
}
.ethics-real-input.ethics-real-input-white {
  background-color: #ffffff;
}

.ethics-input-box {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.ethics-input-box svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.ethics-real-select {
  height: 52px;
  padding: 0 16px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L4.5 4.5L8.5 0.5' stroke='black' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.ethics-real-select:focus {
  outline: none;
  border-color: #000000;
}

.ethics-real-textarea {
  padding: 16px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 6px;
  resize: vertical;
  transition: all 0.3s ease;
}
.ethics-real-textarea::placeholder {
  color: #9c9c9c;
}
.ethics-real-textarea:focus {
  outline: none;
  border-color: #000000;
}

.ethics-real-email-wrapper {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ethics-real-email-wrapper .ethics-real-input {
  flex: 1;
  max-width: 582px;
}
.ethics-real-email-wrapper .ethics-real-input:nth-child(3) {
  max-width: 364px;
}
.ethics-real-email-wrapper .ethics-real-select {
  width: 364px;
  flex-shrink: 0;
}

.ethics-real-email-at {
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  flex-shrink: 0;
}

.ethics-real-radio-group {
  display: flex;
  align-items: center;
  gap: 33px;
}

.ethics-real-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ethics-real-radio {
  display: none;
}

.ethics-real-radio-custom {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.ethics-real-radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f3f3f3;
  transition: all 0.3s ease;
}
.ethics-real-radio-custom.ethics-real-radio-checked {
  background-color: #191919;
  border-color: #191919;
}
.ethics-real-radio-custom.ethics-real-radio-checked::after {
  background-color: #ffffff;
}

.ethics-real-radio:checked + .ethics-real-radio-custom {
  background-color: #191919;
  border-color: #191919;
}
.ethics-real-radio:checked + .ethics-real-radio-custom::after {
  background-color: #ffffff;
}

.ethics-real-radio-text {
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.ethics-real-radio:not(:checked) + .ethics-real-radio-custom + .ethics-real-radio-text {
  font-weight: 500;
  color: #5a5a5a;
}

.ethics-real-notice-text {
  margin-top: -30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}
.ethics-real-notice-text p {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 8px 0;
}
.ethics-real-notice-text p:last-child {
  margin-bottom: 0;
}

.ethics-real-warning-text {
  color: #585858;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.42px;
}

.ethics-real-empathy-note {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 16px 0;
}

.ethics-real-empathy-buttons {
  display: flex;
  gap: 16px;
}

.ethics-real-empathy-btn {
  padding: 12px 40px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #666666;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ethics-real-empathy-btn:hover {
  border-color: #000000;
  color: #000000;
}
.ethics-real-empathy-btn.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.ethics-real-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.ethics-real-submit-button {
  width: 264px;
  height: 59px;
  font-family: "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background-color: #aca376;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .ethics-real-submit-button {
    width: 100%;
  }
}
.ethics-real-submit-button:hover {
  background-color: #9a9168;
}
.ethics-real-submit-button:active {
  transform: scale(0.98);
}

.ethics-real-content-note {
  font-family: "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #585858;
  margin: 8px 0 0 0;
}

.ethics-real-file-upload-group {
  position: relative;
}

.ethics-real-file-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
@media (max-width: 1280px) {
  .ethics-real-file-wrapper {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 768px) {
  .ethics-real-file-wrapper {
    display: grid;
    grid-template: "input input" "searchBtn addBtn";
  }
}
@media (max-width: 480px) {
  .ethics-real-file-wrapper {
    display: flex;
    grid-template: unset;
    flex-wrap: nowrap;
    gap: 8px;
  }
}
.ethics-real-file-wrapper .ethics-real-input {
  flex: 1;
  cursor: default;
  grid-area: input;
}
@media (max-width: 1280px) {
  .ethics-real-file-wrapper .ethics-real-input {
    flex: 5;
  }
}

.ethics-real-file-input {
  display: none;
}

.ethics-real-file-button {
  height: 52px;
  padding: 0 30px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  grid-area: searchBtn;
}
@media (max-width: 1280px) {
  .ethics-real-file-button {
    width: calc(50% - 7px);
    flex: 1;
  }
}
@media (max-width: 768px) {
  .ethics-real-file-button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .ethics-real-file-button {
    margin-left: 0 !important;
    width: 100%;
  }
}
.ethics-real-file-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.ethics-real-file-button:active {
  transform: scale(0.98);
}
.ethics-real-file-button.ethics-real-file-add-btn {
  min-width: 92px;
  grid-area: addBtn;
}

@media screen and (max-width: 1024px) {
  .ethics-real-back-button {
    left: 20px;
  }
  .ethics-real-section {
    margin-bottom: 60px;
  }
  .ethics-real-table-header,
  .ethics-real-table-body {
    grid-template-columns: 1fr;
  }
  .ethics-real-table-cell {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .ethics-real-table-cell:last-child {
    border-bottom: none;
  }
  .ethics-real-form-row {
    grid-template-columns: 1fr;
  }
  .ethics-real-email-wrapper {
    flex-wrap: wrap;
  }
  .ethics-real-email-wrapper .ethics-real-input,
  .ethics-real-email-wrapper .ethics-real-select {
    max-width: 100%;
    width: 100%;
  }
  .ethics-real-file-wrapper {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .ethics-real-radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ethics-real-empathy-buttons {
    flex-direction: column;
    width: 100%;
  }
  .ethics-real-empathy-buttons .ethics-real-empathy-btn {
    width: 100%;
  }
  .ethics-real-submit-button {
    width: 100%;
  }
  .ethics-real-file-wrapper .ethics-real-file-button {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
