@charset "utf-8";

/********** 스타일 변수 **********/
:root {
  /***** 컬러 *****/
  --white: #ffffff;
  --black: #222222;

  --gray2: #fbfbfb;
  --gray3: #f8f8f8;
  --gray5: #f4f5f6;
  --gray10: #f0f0f0;
  --gray15: #e9e9eb;
  --gray20: #e1e2e5;
  --gray25: #d7d9dd;
  --gray30: #cdd1d5;
  --gray40: #b1b8be;
  --gray43: #a8afb6;
  --gray45: #9ea6ae;
  --gray50: #8a949e;
  --gray55: #7c8690;
  --gray60: #6d7882;
  --gray70: #58616a;
  --gray80: #464c53;
  --gray90: #33363d;

  --lightblue5: #f1f7ff;
  --lightblue10: #eaf3ff;
  --lightblue20: #dcecff;
  --lightblue30: #cde3fc;
  --lightblue40: #bad5f4;
  --lightblue50: #a7cbf5;
  --lightblue60: #93baee;
  --lightblue70: #7fb0eb;
  --lightblue80: #70a5e8;
  --lightblue90: #5597e8;

  --blue5: #5aa0ef;
  --blue10: #4a8fe8;
  --blue20: #3b84e8;
  --blue30: #2c78e8;
  --blue40: #1f6ce8;
  --blue50: #1860e8;
  --blue60: #155cce;
  --blue70: #144fc0;
  --blue80: #0047af;
  --blue90: #00409e;

  --green5: #f0f8ef;
  --green10: #e9f5e8;
  --green20: #dcf2d9;
  --green30: #ceedca;
  --green40: #b3ddac;
  --green50: #37b24d;
  --green60: #29a83b;
  --green70: #1da034;
  --green80: #1c932d;
  --green90: #158c26;

  --red5: #fff5f5;
  --red10: #ffeded;
  --red20: #ffe3e3;
  --red30: #ffdcdc;
  --red40: #ffcaca;
  --red50: #e52929;
  --red60: #db2323;
  --red70: #d11c1c;
  --red80: #c61717;
  --red90: #bc0f0f;

  --xiaored: #ff2741;

  /***** 사이즈 *****/
  --header-height: 60px;
  --footer-height: 1008px;
  --side-padding: 0 24px;
}

/********** Mobile First **********/
/********** 초기 스타일 **********/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  font-family:
    "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo",
    "Malgun Gothic", "맑은 고딕", "Nanum Gothic", "나눔고딕", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

a {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
  /* 복사 금지 */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

input,
textarea,
button,
select {
  border: none;
  font-family:
    "Pretendard Variable", "Noto Sans KR", "Apple SD Gothic Neo",
    "Malgun Gothic", "맑은 고딕", "Nanum Gothic", "나눔고딕", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

pre,
code {
  white-space: pre-wrap;
  word-break: break-all;
}

input,
textarea,
select {
  border: 1px solid var(--gray20);
  background-color: var(--white);
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 400;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid var(--blue50);
}

input:disabled,
textarea:disabled,
select:disabled {
  border: 1px solid var(--gray20);
  background-color: var(--gray10);
  color: var(--gray50);
  opacity: 1;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"] {
  padding: 10px 14px;
  height: 40px;
}

input[type="file"] {
  border: none;
  border-radius: 0;
}

select {
  padding: 8px 10px;
  height: 40px;
}

textarea {
  resize: none;
  padding: 10px 14px;
  min-height: 68px;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: var(--gray50);
}

button {
  appearance: none;
  cursor: pointer;
  padding: 0px;
  background: none;
  border: none;
  line-height: normal;
}

button:focus {
  outline: none;
}

button:disabled {
  cursor: inherit;
  opacity: 0.7;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: none;
}

textarea::-webkit-scrollbar,
.modal-contents::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track,
.modal-contents::-webkit-scrollbar-track {
  background: var(--gray10);
  border-radius: 2px;
}

textarea::-webkit-scrollbar-thumb,
.modal-contents::-webkit-scrollbar-thumb {
  background-color: var(--gray20);
  border-radius: 2px;
}

textarea::-webkit-scrollbar-thumb:hover,
.modal-contents::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray30);
}

.scroll-wrap::-webkit-scrollbar {
  display: none;
}

/********** 바로가기 **********/
#skipNav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

#skipNav a {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  transform: translateY(-100%);
  font-size: 14px;
}

#skipNav a:focus,
#skipNav a:active {
  transform: translateY(0);
}

/********** 공통 스타일 **********/
.wrap {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

#main {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--footer-height));
  min-height: calc(100dvh - var(--footer-height));
  padding-bottom: 60px;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contents-wrap {
  width: 100%;
  padding: var(--side-padding);
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/************************************/
/********** 키워드랩 홈페이지 **********/
/************************************/

#main .contents-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 100px;
}

#main .top-section + .section .contents-wrap {
  padding-top: 150px;
}

#main .content,
#main .home-section .contents-wrap,
#about-vision .contents-wrap,
#contact-section .contents-wrap,
#about-location .contents-wrap {
  gap: 50px;
}

#main .service-detail .content {
  gap: 40px;
}

#main .home-section .content {
  gap: 30px;
}

#main .home-service .contents-wrap {
  gap: 20px;
}

.content.center {
  justify-content: center;
}

#main .service-epilogue .contents-wrap,
#home-partner .contents-wrap,
#china-point .contents-wrap {
  padding-right: 0;
  padding-left: 0;
  gap: 40px;
}

.service-epilogue .content,
#home-partner .content,
#china-point .content {
  padding: var(--side-padding);
}

#main .content.box {
  padding: 25px;
  border-radius: 25px;
  background-color: #ddd;
  gap: 30px;
}

#main .bottom-section .box {
  padding: 80px 25px;
  justify-content: center;
}

.border-box {
  border: 1px solid var(--gray15);
  border-radius: 12px;
  padding: 22px 25px 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.border-box-top p {
  font-weight: 600;
  font-size: 17px;
}

.chart-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.border-box-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.chart-img-wrap {
  padding: 0 10px;
  display: flex;
}

.minChart .chart-img-wrap {
  max-width: 45%;
}

.chart-badge-wrap .badge {
  width: 100%;
}

/***** 차트 *****/
.barChart-wrap {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}

.barChart-y {
  position: absolute;
  top: 25px;
  bottom: 0;
  width: 100%;
  height: calc(100% - 66px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.barChart-y > li {
  width: 100%;
  height: 1px;
  background-color: var(--gray10);
}

.barChart-content-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.barChart-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  text-align: center;
}

.barChart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 180px;
}

.barChart-value {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--gray70);
  white-space: nowrap;
}

.barChart-bar {
  width: 30px;
  height: 10px;
  background-color: var(--gray20);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: all 800ms;
}

.barChart-name p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray60);
  letter-spacing: -0.4px;
}

.barChart-name p span {
  font-size: 12px;
}

.barChart-first .barChart-bar {
  background-color: var(--blue50);
}

.barChart-first .barChart-value {
  color: var(--blue50);
}

.barChart-sec .barChart-bar {
  background-color: var(--lightblue60);
}

.barChart-sec .barChart-value {
  color: var(--lightblue90);
}

/***** 상단 영역 *****/
.top-section {
  width: 100%;
  height: calc(100dvh + 50px);
  position: relative;
}

.top-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-section::after {
  content: "";
  width: 100%;
  height: 200px;
  background: linear-gradient(rgba(225, 225, 225, 0), var(--white));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

#home-main::before {
  display: none;
}

#home-main video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

#main .top-section .contents-wrap {
  width: 100%;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

#main .top-section .content,
#main .bottom-section .content {
  text-align: center;
  justify-content: center;
  gap: 30px;
}

#main .top-section .btn-wrap,
#main .bottom-section .btn-wrap {
  justify-content: center;
}

.service-detail-sec {
  flex-direction: column-reverse;
  position: relative;
  margin-top: -50px;
  margin-bottom: 50px;
}

.service-detail-sec:last-child {
  margin-bottom: 0;
}

/***** 텍스트 *****/
.txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.center .txt-wrap,
#china-intro .hasMinchart .txt-wrap {
  text-align: center;
  align-items: center;
}

.txt-wrap h2,
.txt-wrap h3,
.txt-wrap p {
  line-height: 1.4;
  word-break: keep-all;
  letter-spacing: -0.3px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
}

.top-section .main-title {
  color: var(--white);
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

#home-main .main-title {
  color: var(--black);
  font-size: 34px;
  text-shadow: none;
}

.section-tag {
  font-weight: 600;
  color: var(--blue50);
  font-size: 18px;
}

.section-tag.box {
  width: fit-content;
  padding: 7px 15px;
  background-color: var(--lightblue5);
  border-radius: 50px;
  border: 1px solid var(--lightblue20);
  position: relative;
  overflow: hidden;
  font-size: 15px;
}

.section-tag.box::after {
  content: "";
  width: 20px;
  height: 80px;
  background-color: var(--white);
  position: absolute;
  top: -20px;
  left: -35px;
  opacity: 0.5;
  transform: rotate(30deg);
}

.section-tag.box.in-view::after {
  animation: lightslide 1s forwards;
  opacity: 0.5;
}

@keyframes lightslide {
  0% {
    left: -30px;
  }

  100% {
    left: 190px;
  }
}

.section-title {
  font-weight: 700;
  font-size: 28px;
}

.bottom-section .section-title {
  font-size: 26px;
}

.content-txt {
  line-height: 1.5;
  color: var(--gray70);
  font-size: 18px;
}

.content-txt.bold {
  font-weight: 500;
  margin-top: 5px;
  color: var(--black);
  padding: 15px 20px;
  border: 2px solid var(--lightblue20);
  border-radius: 14px;
}

.content-sub-txt {
  line-height: 1.5;
  color: var(--gray50);
  font-size: 16px;
  margin-top: -5px;
}

.txt-wrap .badge-wrap {
  margin-top: 15px;
}

.application-icon {
  width: 60px;
}

.min-txt {
  font-size: 14px;
  color: var(--gray50);
}

.data-copyright {
  width: 100%;
  text-align: left;
  color: var(--gray45);
  line-height: 1.6;
  font-size: 13px;
  font-weight: 500;
}

.img-wrap .data-copyright {
  margin-top: 15px;
  float: left;
}

/***** 토글 리스트 *****/
.toggle-list {
  display: flex;
  flex-direction: column;
}

.toggle-list > li {
  padding: 25px 10px 5px 5px;
  border-top: 1px solid var(--gray20);
  cursor: pointer;
}

.toggle-list > li:hover {
  background-color: var(--gray2);
}

.toggle-list > li:active {
  background-color: var(--gray5);
}

.toggle-list > li:last-child {
  border-bottom: 1px solid var(--gray20);
}

.toggle-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.toggle-top p {
  font-weight: 500;
  font-size: 18px;
}

.toggle-top .icon {
  color: var(--gray50);
  transition: all 200ms;
}

.active .toggle-top .icon {
  transform: rotate(45deg);
  color: var(--blue50);
}

.toggle-main {
  display: none;
  margin-bottom: 20px;
}

.toggle-main p {
  color: var(--gray70);
  line-height: 1.6;
}

/***** 이미지 리스트 *****/
.img-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  column-gap: 20px;
}

.img-list > li {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.img-list > li img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray15);
}

/***** 기본 리스트 *****/
.basic-list {
  display: flex;
  flex-direction: column;
}

.basic-list > li {
  display: flex;
  gap: 10px;
  padding: 20px 5px;
  border-top: 1px solid var(--gray20);
}

.basic-list > li:last-child {
  border-bottom: 1px solid var(--gray20);
}

.basic-list > li .icon {
  color: var(--gray50);
  top: 1px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.basic-list > li p {
  line-height: 1.5;
  font-weight: 500;
}

/***** 연혁 리스트 *****/
.line-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.line-list > li {
  display: flex;
  gap: 40px;
  position: relative;
}

.line-list > li::after {
  content: "";
  width: 1px;
  height: calc(100% + 40px);
  background-color: var(--lightblue40);
  position: absolute;
  top: 15px;
  left: 84px;
}

.line-list > li:last-child::after {
  display: none;
}

.year {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--blue50);
  width: 68px;
  position: relative;
  z-index: 2;
}

.year::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--blue50);
  position: absolute;
  border-radius: 50%;
  right: -20px;
  top: 12px;
}

.line-detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
}

.line-detail > li {
  line-height: 1.5;
}

/***** 카드 리스트 *****/
.scroll-wrap {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}

.scroll-wrap .img-wrap {
  display: flex;
  width: 1000px;
  margin-left: 10%;
  margin-top: -20px;
}

.scroll-wrap .img-wrap > li {
  margin-left: -55px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-list.scroll {
  flex-wrap: nowrap;
  width: 1530px;
  padding-left: 24px;
  cursor: grab;
  justify-content: flex-start;
}

.scroll-wrap.dragging {
  cursor: grabbing;
  user-select: none;
}

.card-list.basic {
  gap: 30px;
  column-gap: 20px;
}

.card-list.basic.wide {
  gap: 50px;
}

.card-list > li {
  width: calc(50% - 10px);
  background-color: var(--gray3);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.card-list.step > li {
  padding: 25px 20px 20px 20px;
}

.card-list.step > li::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--gray15);
  position: absolute;
}

.card-list.step > li:nth-child(1)::before,
.card-list.step > li:nth-child(3)::before {
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.card-list.step > li:nth-child(2)::before,
.card-list.step > li:nth-child(4)::before {
  width: 40px;
  left: -30px;
  bottom: -13px;
  transform: rotate(-45deg);
}

.card-list > li:last-child::before {
  display: none;
}

.card-list.step > li .card-txt {
  align-items: center;
  text-align: center;
}

.card-list.basic > li {
  padding: 0;
  flex-direction: row;
  gap: 20px;
  border-radius: 0;
  background: none;
}

.card-list.line > li {
  background: var(--white);
  border: 1px solid var(--gray20);
}

.card-list.wide > li {
  width: 100%;
  flex-direction: row;
  gap: 20px;
}

.card-list.scroll > li {
  width: 280px;
  gap: 20px;
  padding: 25px;
}

.card-list.scroll.hasVid {
  width: 1380px;
}

.card-list.hasVid > li {
  width: 320px;
  min-width: 320px;
  height: 180px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.card-list.basic.wide > li {
  flex-direction: column;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  z-index: 5;
}

.card-list.hasVid > li:hover > img {
  opacity: 0.95;
}

.card-list.hasVid > li iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.card-icon-img {
  min-width: 40px;
  width: 40px;
  height: 40px;
  margin: auto 0;
}

.card-list.basic .card-icon-img,
.card-list.step .card-icon-img {
  min-width: 35px;
  width: 35px;
  height: 35px;
}

.card-thumb {
  border-radius: 12px;
  overflow: hidden;
  width: 100px;
  min-width: 100px;
  height: 100px;
}

.card-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray10);
  color: var(--gray50);
  border-radius: 10px;
}

.card-icon .icon {
  width: 22px;
  height: 22px;
}

.service-point .card-icon .icon {
  width: 26px;
  height: 26px;
}

.card-list.basic .card-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.card-icon.blue {
  color: var(--blue50);
  background-color: var(--lightblue5);
}

.card-list.wide .card-icon {
  width: 60px;
  min-width: 60px;
  height: 100%;
}

.card-badge {
  padding: 12px 18px;
  display: flex;
  width: fit-content;
  gap: 8px;
  background-color: var(--gray10);
  color: var(--gray60);
  border-radius: 10px;
}

.card-badge.blue {
  background-color: var(--lightblue5);
  color: var(--blue50);
}

.card-badge p {
  font-weight: 600;
}

.card-txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-list.basic .card-txt {
  gap: 4px;
}

.card-list.basic .card-txt p.bold {
  letter-spacing: -0.8px;
}

.card-list.basic.wide .card-txt {
  gap: 10px;
}

.card-txt p {
  color: var(--gray60);
  line-height: 1.4;
}

.card-txt p.card-title {
  font-weight: 600;
  color: var(--black);
  font-size: 19px;
  margin-top: 2px;
}

.card-txt p.bold {
  font-weight: 500;
  color: var(--black);
}

.card-txt p.card-step {
  font-weight: 600;
  color: var(--blue50);
  margin-top: 8px;
  letter-spacing: -0.4px;
}

.card-list.basic .card-txt p.bold {
  font-size: 20px;
  font-weight: 600;
}

/***** 아이콘 배지 *****/
.badgeIcon-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badgeIcon {
  display: flex;
  gap: 12px;
  padding: 15px 15px;
  background-color: var(--white);
  border: 1px solid var(--gray20);
  color: var(--blue50);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.badgeIcon p {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray80);
}

/***** 배경 이미지 *****/
.bottom-section .box {
  background: url(../img/background/background01.webp) center no-repeat;
  background-size: cover;
}

#about-main {
  background: url(../img/photo/people02.webp) center no-repeat;
  background-size: cover;
  background-position: 35% center;
}

#place-main {
  background: url(../img/photo/place01.webp) center no-repeat;
  background-size: auto 120%;
  background-position: 66% bottom;
}

#store-main {
  background: url(../img/photo/store01.webp) center no-repeat;
  background-size: cover;
  background-position: 65% center;
}

#exper-main {
  background: url(../img/photo/exper01.webp) center no-repeat;
  background-size: cover;
  background-position: 70% center;
}

#blog-main {
  background: url(../img/photo/blog01.webp) center no-repeat;
  background-size: cover;
  background-position: 40% center;
}

#china-main {
  background: url(../img/photo/china02.webp) center no-repeat;
  background-size: cover;
  background-position: 40% center;
}

#coupang-main {
  background: url(../img/photo/coupang01.webp) center no-repeat;
  background-size: auto 120%;
  background-position: center bottom;
}

#gift-main {
  background: url(../img/photo/gift01.webp) center no-repeat;
  background-size: cover;
  background-position: center;
}

.service-point-img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
}

#home-about .service-point-img {
  background: url(../img/photo/people01.webp) center no-repeat;
  background-size: cover;
  background-position: 0% 30%;
}

#about-mission .service-point-img {
  background: url(../img/photo/people03.webp) center no-repeat;
  background-size: 130%;
}

#about-vision .service-point-img {
  background: url(../img/photo/people04.webp) center no-repeat;
  background-size: 150%;
  background-position: 20% 20%;
}

#about-hire .service-point-img {
  background: url(../img/photo/people05.webp) center no-repeat;
  background-size: 170%;
  background-position: center 85%;
}

#place-point .service-point-img {
  background: url(../img/photo/place02.webp) center no-repeat;
  background-size: cover;
  background-position: 0% 30%;
}

#store-point .service-point-img {
  background: url(../img/photo/store02.webp) center no-repeat;
  background-size: 160%;
}

#exper-point .service-point-img {
  background: url(../img/photo/exper02.webp) center no-repeat;
  background-size: 180%;
  background-position: 55% 30%;
}

#blog-point .service-point-img {
  background: url(../img/photo/blog02.webp) center no-repeat;
  background-size: 140%;
  background-position: 40% center;
}

/***** 로고 애니 *****/
.animation-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.animation-section::before {
  content: "";
  width: 80px;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0), var(--white));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.animation-section::after {
  content: "";
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white));
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.logo-list,
.logo-list.mob {
  display: flex;
  width: 3000px;
  gap: 30px;
  margin: 0 20px;
}

.logo-list.slide-left {
  width: 2200px;
  animation: slide-left 40s infinite linear;
}

.logo-list.slide-right {
  width: 2900px;
  transform: translateX(-2550px);
  animation: slide-right 40s infinite linear;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1850px);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-2500px);
  }

  100% {
    transform: translateX(0);
  }
}

/********** 배너 슬라이드 **********/
.slide-banner-section {
  width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.banner-wrap {
  width: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.banner-list {
  width: 2800px;
  display: flex;
}

.banner-list > li {
  width: 400px;
  overflow: hidden;
  background-color: var(--blue-color);
}

.banner-list > li img {
  transition: all 200ms;
}

.banner-list > li:hover img {
  transform: scale(1.02);
}

.banner-list > li a {
  display: block;
}

.slide-banner-btn {
  display: flex;
  gap: 8px;
}

.slide-banner-btn span {
  width: 8px;
  height: 8px;
  background-color: var(--gray20);
  border-radius: 50px;
  cursor: pointer;
}

.slide-banner-btn span.active {
  background-color: var(--blue50);
}

/***** 이미지 애니 *****/
.anima-first,
.anima-sec {
  transition:
    opacity 0.3s ease,
    transform 0.5s ease;
}

.anima-first {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}

.anima-first.fade-out {
  opacity: 0;
  transform: translateY(20px) translateX(-50%);
}

.anima-sec {
  opacity: 0;
  transform: translateY(20px) translateX(-50%);
}

.anima-sec.fade-in {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}

.home-img-content .img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-img-content img {
  position: absolute;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.home-img-content img.basic {
  position: relative;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.home-img-content .img-box {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

#home-exper .home-img-content .img-box {
  background: url(../img/photo/people06.webp) center no-repeat;
  background-size: 135%;
  background-position: 60% center;
  margin: 60px 0;
}

#home-china .home-img-content .img-box {
  background: url(../img/photo/people07.webp) center no-repeat;
  background-size: 135%;
  background-position: 60% center;
  margin: 80px 0;
}

/* 플레이스 */
#hplace-img02 {
  width: 180px;
  top: 170px;
  left: calc(50% - 110px);
}

#hplace-img03 {
  width: 170px;
  top: 250px;
  left: calc(50% + 115px);
}

#hplace-img04 {
  width: 100px;
  top: 120px;
  left: calc(50% - 130px);
}

#hplace-img05 {
  width: 100px;
  top: 230px;
  left: calc(50% - 130px);
}

#hplace-img06 {
  width: 210px;
  top: 170px;
  left: calc(50% + 120px);
}

/* 스토어 */
#hstore-img02 {
  width: 125px;
  top: 185px;
  left: calc(50% - 130px);
  border-radius: 10px;
}

#hstore-img03 {
  width: 150px;
  top: 235px;
  left: calc(50% - 100px);
  border-radius: 10px;
}

#hstore-img04 {
  width: 210px;
  top: 150px;
  left: calc(50% + 150px);
}

#hstore-img05 {
  width: 210px;
  top: 160px;
  left: calc(50% + 130px);
}

#hstore-img06 {
  width: 65px;
  top: 120px;
  left: calc(50% - 110px);
}

#hstore-img07 {
  width: 65px;
  top: 200px;
  left: calc(50% - 160px);
}

/* 블로그 */
#hblog-img01 {
  margin: 50px 0 40px 0;
}

#hblog-img02 {
  width: 240px;
  top: 0px;
  left: calc(50% + 100px);
}

#hblog-img03 {
  width: 160px;
  top: 160px;
  left: calc(50% - 110px);
}

#hblog-img04 {
  width: 150px;
  top: 30px;
  left: calc(50% - 115px);
  border-radius: 5px;
}

#hblog-img05 {
  width: 150px;
  top: 190px;
  left: calc(50% + 115px);
  border-radius: 5px;
}

/* 체험단 */
#hexper-img01 {
  width: 190px;
  top: 100px;
  left: calc(50% - 110px);
}

#hexper-img02 {
  width: 160px;
  top: 250px;
  left: calc(50% + 110px);
}

#hexper-img03 {
  width: 160px;
  top: 20px;
  left: calc(50% - 110px);
}

#hexper-img04 {
  width: 150px;
  top: 250px;
  left: calc(50% + 110px);
}

/* 중화권 */
#hchina-img02 {
  width: 75px;
  top: 130px;
  left: calc(50% + 120px);
}

#hchina-img03 {
  width: 90px;
  top: 210px;
  left: calc(50% - 95px);
}

#hchina-img04 {
  width: 90px;
  top: 260px;
  left: calc(50% - 135px);
}

#hchina-img05 {
  width: 85px;
  top: 320px;
  left: calc(50% + 95px);
}

#hchina-img06 {
  width: 160px;
  top: 120px;
  left: calc(50% - 125px);
  padding: 6px;
  background-color: var(--white);
}

#hchina-img07 {
  width: 140px;
  top: 300px;
  left: calc(50% + 130px);
  padding: 6px;
  background-color: var(--white);
}

/* 쿠팡 */
#hcoup-img02 {
  width: 220px;
  top: 110px;
  left: calc(50% + 140px);
}

#hcoup-img03 {
  width: 140px;
  top: 100px;
  left: calc(50% - 110px);
  border-radius: 8px;
}

#hcoup-img04 {
  width: 260px;
  top: 250px;
  left: calc(50% + 140px);
  border-radius: 8px;
}

/* 선물하기 */
#hgift-img02 {
  width: 130px;
  top: 170px;
  left: calc(50% - 100px);
}

#hgift-img03 {
  width: 140px;
  top: 130px;
  left: calc(50% + 100px);
}

#hgift-img04 {
  width: 280px;
  top: 180px;
  left: 50%;
}

/***** 이미지 *****/
.service-title {
  gap: 70px;
  padding: 100px 0;
}

#main .service-title .contents-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.img-wrap {
  width: 100%;
  position: relative;
}

.service-title .img-wrap img {
  position: absolute;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transform: translateX(-50%);
}

.service-detail .img-wrap img {
  border-radius: 15px;
}

/* 플레이스 */
#place-service-img01 {
  height: 220px;
}

#place-service-img01 img {
  width: 100px;
}

#pmt-img01 {
  top: 40px;
  left: calc(50% - 155px);
}

#pmt-img02 {
  top: 0;
  left: calc(50% - 90px);
}

#pmt-img03 {
  top: 120px;
  left: calc(50% - 40px);
}

#pmt-img04 {
  top: 65px;
  left: calc(50% + 20px);
  z-index: 1;
}

#pmt-img05 {
  top: 30px;
  left: calc(50% + 135px);
  z-index: 1;
}

#pmt-img06 {
  top: 95px;
  left: calc(50% + 175px);
}

#place-service-img02 {
  height: 350px;
}

#pmb-img01 {
  top: 0px;
  left: calc(50% - 70px);
  width: 220px;
}

#pmb-img02 {
  width: 180px;
  top: 20px;
  left: calc(50% + 150px);
}

#pmb-img03 {
  width: 180px;
  top: 120px;
  left: calc(50% - 115px);
}

#pmb-img04 {
  width: 180px;
  top: 190px;
  left: calc(50% + 85px);
}

/* 스토어 */
#store-service-img01 {
  height: 260px;
}

#smt-img01 {
  width: 260px;
  top: 50px;
  left: calc(50% - 40px);
}

#smt-img02 {
  width: 150px;
  top: 0px;
  left: calc(50% + 110px);
  z-index: 1;
}

#smt-img03 {
  width: 175px;
  top: 190px;
  left: calc(50% - 100px);
}

#smt-img04 {
  width: 120px;
  top: 150px;
  left: calc(50% + 80px);
  z-index: 1;
}

#smt-img05 {
  width: 180px;
  top: 210px;
  left: calc(50% + 95px);
}

#store-service-img02 {
  height: 310px;
}

#smb-img01 {
  width: 230px;
  top: 0px;
  left: calc(50% - 40px);
}

#smb-img02 {
  width: 195px;
  top: 135px;
  left: calc(50% - 105px);
}

#smb-img03 {
  width: 195px;
  top: 250px;
  left: calc(50% - 80px);
}

#smb-img04 {
  width: 120px;
  top: 70px;
  left: calc(50% + 155px);
}

#smb-img05 {
  width: 120px;
  top: 165px;
  left: calc(50% + 100px);
  z-index: 1;
}

/* 블로그 */
#blog-service-img01 {
  height: 280px;
}

#bmt-img01 {
  width: 230px;
  top: 20px;
  left: calc(50% + 100px);
}

#bmt-img02 {
  width: 230px;
  top: 170px;
  left: calc(50% - 90px);
}

#bmt-img03 {
  width: 100px;
  top: 40px;
  left: calc(50% - 150px);
  border-radius: 5px;
}

#bmt-img04 {
  width: 100px;
  top: 0px;
  left: calc(50% - 90px);
  border-radius: 5px;
  z-index: 1;
}

#bmt-img05 {
  width: 100px;
  top: 140px;
  left: calc(50% + 100px);
  border-radius: 5px;
}

#bmt-img06 {
  width: 100px;
  top: 180px;
  left: calc(50% + 170px);
  border-radius: 5px;
  z-index: 1;
}

#blog-service-img02 {
  height: 380px;
}

#bmb-img01 {
  width: 250px;
  top: 30px;
  left: calc(50% - 20px);
  border-radius: 8px;
}

#bmb-img02 {
  width: 250px;
  top: 0px;
  left: calc(50% + 30px);
  border-radius: 8px;
}

#bmb-img03 {
  width: 200px;
  top: 110px;
  left: calc(50% - 70px);
  border-radius: 10px;
}

#bmb-img06 {
  width: 200px;
  top: 140px;
  left: calc(50% + 145px);
  border-radius: 10px;
}

/* 체험단 */
#exper-service-img01 {
  height: 230px;
}

#emt-img01 {
  width: 190px;
  top: 0px;
  left: calc(50% - 60px);
}

#emt-img02 {
  width: 240px;
  top: 110px;
  left: calc(50% - 110px);
}

#emt-img03 {
  width: 150px;
  top: 30px;
  left: calc(50% + 125px);
}

#exper-service-img02 {
  height: 230px;
}

#emb-img01 {
  width: 150px;
  top: 10px;
  left: calc(50% - 110px);
}

#emb-img02 {
  width: 190px;
  top: 0px;
  left: calc(50% + 80px);
}

#emb-img03 {
  width: 240px;
  top: 120px;
  left: calc(50% + 130px);
}

/***** 기타 *****/
.bottom-section .btn.hasIcon {
  padding: 11px 16px 11px 22px;
  height: auto;
  border-radius: 10px;
  gap: 5px;
}

.map-section {
  width: 100%;
}

#daumRoughmapContainer1745805013941:nth-child(n) {
  width: 100%;
}

/************************************/
/************************************/

/********** 헤더 **********/
.header {
  width: 100%;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  transition: all 300ms;
}

.header.clear {
  background-color: transparent;
}

.header.slide,
.header.slide.clear {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
}

.header .content {
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  flex-direction: row;
}

.logo {
  width: 160px;
  min-width: 160px;
  height: 22px;
  overflow: hidden;
  z-index: 1;
}

.header .logo {
  transform: translateY(2px);
}

.header.invert .logo {
  filter: brightness(10) grayscale();
}

.header.slide.invert .logo {
  filter: none;
}

/***** 헤더 버튼 *****/
.header-btn-wrap {
  display: flex;
  gap: 15px;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  color: var(--gray90);
}

.header-btn:hover {
  color: var(--gray90);
}

.header-btn:active {
  color: var(--black);
}

.header-btn.active {
  color: var(--blue50);
}

.header-btn p {
  font-weight: 500;
}

.menu-btn {
  width: 24px;
  height: 24px;
}

.header.invert .menu-btn {
  color: var(--white);
}

.header.slide.invert .menu-btn {
  color: var(--black);
}

.header .icon.menu-off,
.header.slide .icon.menu-on {
  display: none;
}

.header.slide .icon.menu-off {
  display: block;
}

/***** 메뉴 모달 *****/
.menuModal-btn {
  position: relative;
}

.menu-modal {
  position: absolute;
  top: 50px;
  left: 0;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  padding: 5px;
  display: none;
  z-index: 30;
}

.header-btn .menu-modal {
  left: inherit;
  top: 40px;
  right: -5px;
  transform: none;
}

.menu-modal > li a {
  display: block;
  display: flex;
  padding: 12px 15px 12px 15px;
  border-radius: 10px;
  gap: 8px;
  align-items: center;
  color: var(--gray60);
}

.menu-modal > li a:hover {
  background-color: var(--gray5);
}

.menu-modal > li a:active {
  background-color: var(--gray10);
}

.menu-modal > li p {
  white-space: nowrap;
  font-size: 14px;
}

.menu-modal > li .icon {
  color: var();
}

/***** 메뉴 *****/
.menu {
  width: 100%;
  /*    background-color: var(--white);*/
  padding-bottom: 30px;
  display: none;
  position: relative;
}

.gnb {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.gnb > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  position: relative;
}

.gnb-name {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 10px;
  gap: 8px;
}

.gnb > li.active .gnb-name {
  color: var(--blue50);
}

.gnb-name:hover {
  color: var(--gray80);
}

.gnb-name:active {
  color: var(--gray90);
}

.gnb-name p {
  font-size: 17px;
  font-weight: 500;
}

.gnb-name .icon.arrow-icon {
  width: 18px;
  height: 18px;
  top: 2px;
  color: var(--gray50);
  transition: all 300ms;
}

.gnb > li.active .icon.arrow-icon {
  transform: rotate(-180deg);
  top: 1px;
}

.lnb {
  width: 100%;
  flex-direction: column;
  display: none;
}

.gnb > li:last-child .lnb {
  margin-bottom: 0;
}

.lnb > li {
  width: 100%;
}

.lnb a {
  display: inline-block;
  color: var(--gray80);
  padding: 10px 16px;
  border-radius: 10px;
}

.lnb > li.active a {
  background-color: var(--lightblue5);
  color: var(--blue50);
}

.lnb > li:hover a {
  background-color: var(--gray3);
}

.sub-menu {
  width: 100%;
  margin-top: 10px;
}

.sub-menu .btn-wrap {
  width: 100%;
}

.sub-menu .btn-wrap .btn {
  width: 50%;
}

/********** 푸터 **********/
#footer {
  width: 100%;
  min-height: var(--footer-height);
  border-top: 1px solid var(--gray15);
  background-color: var(--white);
}

#footer .contents-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 40px;
}

#footer .content {
  flex-wrap: wrap;
  gap: 25px;
}

.footer-channel {
  gap: 15px;
  display: flex;
  margin-bottom: 10px;
}

.footer-channel .btn {
  font-size: 14px;
}

.footer-channel .btn.icon-btn {
  color: var(--gray80);
}

.fnb {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fnb.single {
  flex-direction: row;
}

.fnb-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray80);
}

a.fnb-name:hover {
  color: var(--gray60);
}

.fnb.single .fnb-name {
  font-size: 14px;
}

.fnb-sub {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 10px;
}

.fnb-sub a,
.fnb-sub p {
  font-size: 14px;
  color: var(--gray60);
}

.fnb-sub a:hover,
.fnb-sub p:hover {
  color: var(--gray80);
}

#footer .content.footer-bottom {
  border-top: 1px solid var(--gray15);
  padding-top: 40px;
}

.info-list.copyright > li {
  font-size: 13px;
  color: var(--gray50);
  word-break: keep-all;
}

/***** 수상 *****/
.award {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.award > li {
  width: 45px;
}

.award > li img {
  filter: grayscale();
  opacity: 0.85;
}

/********** 테이블 **********/
.table-wrap {
  width: 100%;
  display: flex;
}

.table {
  width: 100%;
}

.link-table tbody tr {
  cursor: pointer;
}

.table th,
.table td {
  font-size: 15px;
  text-align: left;
  line-height: 1.4;
  max-width: 400px;
}

.table th:first-child,
.table td:first-child {
  padding-left: 15px;
}

.table th:last-child,
.table td:last-child {
  padding-right: 15px;
}

.table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.table th.center,
.table td.center {
  text-align: center;
}

.table th {
  font-weight: 500;
  background-color: var(--gray3);
  padding: 10px;
  color: var(--gray60);
}

.table td {
  font-weight: 400;
  border-bottom: 1px solid var(--gray15);
  padding: 15px 10px;
  color: var(--gray90);
}

.table td.gray,
.table td .gray {
  color: var(--gray50);
}

.table td.blue,
.table td .blue {
  color: var(--blue50);
}

.table td.red,
.table td .red {
  color: var(--red50);
}

.table td.gray,
.table td .gray {
  color: var(--gray50);
}

.link-table tbody tr:hover td {
  background-color: var(--gray2);
}

.link-table tbody tr:active td {
  background-color: var(--gray3);
}

.td-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.td-wrap:last-child {
  margin-bottom: 0;
}

.table input {
  font-size: 15px;
  padding: 8px 12px;
  height: auto;
}

.table input[type="checkbox"] {
  width: 15px;
  height: 15px;
  transform: translateY(2px);
}

.table .btn-wrap,
.table .badge-wrap {
  justify-content: center;
}

/********** 리스트 **********/
/***** 정보 *****/
.info-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-list > li {
  font-size: 14px;
  color: var(--gray70);
  line-height: 1.5;
}

.info-list > li .bold {
  font-weight: 500;
  color: var(--gray90);
}

/********** 탭 메뉴 **********/
.tab-menu-wrap {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}

.tab-menu {
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  align-items: flex-start;
  padding: 0 24px;
}

.modal .tab-menu {
  padding: 0px 24px;
  gap: 5px;
}

.tab-menu::after {
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  background-color: var(--gray20);
  position: absolute;
  bottom: 0;
  left: 24px;
}

.tab-menu > li,
.tab-menu > li > a {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0px 6px 8px 6px;
  gap: 5px;
}

.tab-menu.hasLink > li {
  padding: 0;
}

.tab-menu > li.active {
  border-bottom: 1px solid var(--blue50);
}

.tab-menu p {
  display: block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray50);
}

.modal .tab-menu p {
  font-size: 15px;
}

.tab-menu > li:hover p {
  color: var(--gray60);
}

.tab-menu > li:active p {
  color: var(--gray70);
}

.tab-menu > li.active p {
  color: var(--blue50);
  font-weight: 500;
}

.num-badge {
  padding: 3px 6px;
  font-size: 11px;
  font-weight: 400;
  border-radius: 50px;
  background-color: var(--gray40);
  color: var(--white);
}

.tab-menu > li:hover .num-badge {
  background-color: var(--gray45);
}

.tab-menu > li.active .num-badge {
  background-color: var(--blue50);
}

/********** 입력 폼 **********/
#login-section {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#join-section {
  margin: 50px auto 0 auto;
}

.single-form {
  width: 100%;
}

.single-form-top {
  text-align: center;
  margin-bottom: 30px;
}

.single-form-top .logo {
  display: inline-block;
  width: 200px;
  height: 27px;
}

.single-form-top h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}

form {
  width: 100%;
}

.form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#login-section .form-section {
  gap: 25px;
}

.modal .form-section {
  margin-bottom: 0;
}

.form-top,
.form-main,
.form-bottom {
  width: 100%;
  margin-bottom: 10px;
}

.form-top:last-child,
.form-main:last-child,
.form-bottom:last-child {
  margin-bottom: 0;
}

.form-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray70);
}

.input-wrap {
  width: 100%;
  display: flex;
  position: relative;
}

.input-wrap.hasBtn {
  gap: 10px;
}

.input-wrap.hasUnit input {
  padding-right: 32px;
}

.input-wrap.hasUnit .unit {
  position: absolute;
  top: 10px;
  right: 14px;
  color: var(--gray50);
  font-weight: 500;
}

.input-wrap.hasUnit .icon {
  cursor: pointer;
}

.form-info-txt {
  font-size: 14px;
  color: var(--gray60);
}

.form-info-txt.red {
  color: var(--red50);
}

.form-sub {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.link-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.link-list > li {
  position: relative;
}

.link-list > li::after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: var(--gray20);
  position: absolute;
  top: 4px;
  right: -10px;
}

.link-list > li:last-child::after {
  display: none;
}

.link-list > li a {
  color: var(--gray60);
  font-size: 14px;
}

.link-list > li a:hover {
  color: var(--gray80);
}

.link-list > li a:active {
  color: var(--gray90);
}

/********** 모달 **********/
.modal-wrap {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  display: none;
}

.modal {
  width: calc(100% - 48px);
  max-height: calc(100vh - 120px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 35;
  background-color: var(--white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray10);
  display: none;
}

.header-modal-wrap .modal {
  transform: none;
  top: calc(var(--header-height) + 15px);
  left: inherit;
  right: 24px;
}

.modal-wrap > .modal {
  box-shadow: none;
  border: none;
  border-radius: 15px;
}

.modal-header {
  width: 100%;
  padding: 28px 30px 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.noti-modal .modal-header {
  padding: 22px 25px;
}

.modal-title {
  font-size: 20px;
  font-weight: 500;
}

.modal-header .icon {
  color: var(--gray60);
  cursor: pointer;
}

.modal-contents {
  width: 100%;
  padding: 0 30px;
  overflow: hidden;
  overflow-y: auto;
}

.noti-modal .modal-contents {
  padding: 0;
}

.modal-footer {
  width: 100%;
  padding: 25px 30px 30px 30px;
  display: flex;
  justify-content: flex-end;
}

.modal-footer.txt-btn-wrap {
  background-color: var(--gray5);
  padding: 15px 24px 15px 24px;
}

/********** 컴포넌트 **********/
/***** 텍스트 *****/
.fs-30 {
  font-size: 30px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fw-l {
  font-weight: 300 !important;
}

.fw-r {
  font-weight: 400 !important;
}

.fw-m {
  font-weight: 500 !important;
}

.fw-sb {
  font-weight: 600 !important;
}

.fw-b {
  font-weight: 700 !important;
}

.gray-txt {
  color: var(--gray60) !important;
}

.blue-txt {
  color: var(--blue50) !important;
}

.green-txt {
  color: var(--green50) !important;
}

.red-txt {
  color: var(--red50) !important;
}

.xiaored-txt {
  color: var(--xiaored) !important;
}

/***** 아이콘 *****/
.icon {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  position: relative;
}

.icon26 {
  width: 26x;
  min-width: 26px;
  height: 26px;
}

.icon24 {
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.icon22 {
  width: 22px;
  min-width: 22px;
  height: 22px;
}

.icon20 {
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.icon18 {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.icon16 {
  width: 16px;
  min-width: 18px;
  height: 16px;
}

.icon svg:nth-child(n) {
  width: 100%;
  height: 100%;
}

/*** 아이콘 버튼 ***/
.icon-btn,
.btn.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
}

.icon-btn.circle,
.btn.icon-btn.circle {
  border-radius: 50%;
}

.icon-btn .icon,
.btn.icon-btn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/***** 버튼 *****/
.btn-wrap,
.badge-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-wrap.center,
.badge-wrap.center {
  justify-content: center;
}

.btn,
.badge {
  display: flex;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.btn,
.btn.noAction:hover,
.btn.noAction:active {
  padding: 11px 15px;
  background-color: var(--gray43);
  border: 1px solid var(--gray43);
  color: var(--white);
  font-weight: 400;
  cursor: pointer;
}

.btn.min {
  padding: 6px 12px;
  height: 30px;
  font-size: 14px;
}

.btn.large {
  font-size: 16px;
  padding: 14px 20px;
  height: 50px;
  font-weight: 500;
  border-radius: 10px;
}

.btn.large.light {
  font-weight: 600;
}

.btn:hover {
  background-color: var(--gray45);
  border: 1px solid var(--gray45);
}

.btn:active {
  background-color: var(--gray50);
  border: 1px solid var(--gray50);
}

.btn.noAction {
  cursor: inherit !important;
}

.btn:disabled {
  background-color: var(--gray15) !important;
  border: 1px solid var(--gray15) !important;
  color: var(--gray45) !important;
  cursor: inherit !important;
}

.btn.blue,
.btn.blue.noAction:hover,
.btn.blue.noAction:active {
  background-color: var(--blue50);
  border: 1px solid var(--blue50);
}

.btn.blue:hover {
  background-color: var(--blue60);
  border: 1px solid var(--blue60);
}

.btn.blue:active {
  background-color: var(--blue70);
  border: 1px solid var(--blue70);
}

.btn.green,
.btn.green.noAction:hover,
.btn.green.noAction:active {
  background-color: var(--green50);
  border: 1px solid var(--green50);
}

.btn.green:hover {
  background-color: var(--green60);
  border: 1px solid var(--green60);
}

.btn.green:active {
  background-color: var(--green70);
  border: 1px solid var(--green70);
}

.btn.red,
.btn.red.noAction:hover,
.btn.red.noAction:active {
  background-color: var(--red50);
  border: 1px solid var(--red50);
}

.btn.red:hover {
  background-color: var(--red60);
  border: 1px solid var(--red60);
}

.btn.red:active {
  background-color: var(--red70);
  border: 1px solid var(--red70);
}

/* 라이트 버튼 */
.btn.light,
.btn.light.noAction:hover,
.btn.light.noAction:active {
  background-color: var(--gray10);
  border: 1px solid var(--gray10);
  color: var(--gray70);
  font-weight: 600;
}

.btn.light:hover {
  background-color: var(--gray15);
  border: 1px solid var(--gray15);
}

.btn.light:active {
  background-color: var(--gray20);
  border: 1px solid var(--gray20);
}

.btn.light.blue,
.btn.light.blue.noAction:hover,
.btn.light.blue.noAction:active {
  background-color: var(--lightblue10);
  border: 1px solid var(--lightblue10);
  color: var(--blue50);
}

.btn.light.blue:hover {
  background-color: var(--lightblue20);
  border: 1px solid var(--lightblue20);
}

.btn.light.blue:active {
  background-color: var(--lightblue30);
  border: 1px solid var(--lightblue30);
}

.btn.light.green,
.btn.light.green.noAction:hover,
.btn.light.green.noAction:active {
  background-color: var(--green10);
  border: 1px solid var(--green10);
  color: var(--green70);
}

.btn.light.green:hover {
  background-color: var(--green20);
  border: 1px solid var(--green20);
}

.btn.light.green:active {
  background-color: var(--green30);
  border: 1px solid var(--green30);
}

.btn.light.red,
.btn.light.red.noAction:hover,
.btn.light.red.noAction:active {
  background-color: var(--red10);
  border: 1px solid var(--red10);
  color: var(--red50);
}

.btn.light.red:hover {
  background-color: var(--red20);
  border: 1px solid var(--red20);
}

.btn.light.red:active {
  background-color: var(--red30);
  border: 1px solid var(--red30);
}

/* 라인 버튼 */
.btn.line,
.btn.line.noAction:hover,
.btn.line.noAction:active {
  background-color: var(--white);
  border: 1px solid var(--gray20);
  color: var(--gray70);
  font-weight: 500;
}

.btn.line:hover {
  background-color: var(--gray5);
}

.btn.line:active {
  background-color: var(--gray10);
}

.btn.line.clear {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(225, 225, 225, 0.8);
  background-color: rgba(0, 0, 0, 0.08);
}

.btn.line.clear:hover {
  background-color: rgba(225, 225, 225, 0);
}

.btn.line.clear:active {
  background-color: rgba(225, 225, 225, 0.1);
}

.btn.line.blue,
.btn.line.blue.noAction:hover,
.btn.line.blue.noAction:active {
  border: 1px solid var(--blue50);
  color: var(--blue50);
}

.btn.line.blue:hover {
  background-color: var(--lightblue5);
}

.btn.line.blue:active {
  background-color: var(--lightblue10);
}

.btn.line.green,
.btn.line.green.noAction:hover,
.btn.line.green.noAction:active {
  border: 1px solid var(--green60);
  color: var(--green60);
}

.btn.line.green:hover {
  background-color: var(--green5);
}

.btn.line.green:active {
  background-color: var(--green10);
}

.btn.line.red,
.btn.line.red.noAction:hover,
.btn.line.red.noAction:active {
  border: 1px solid var(--red50);
  color: var(--red50);
}

.btn.line.red:hover {
  background-color: var(--red5);
}

.btn.line.red:active {
  background-color: var(--red10);
}

/* 둥근 버튼 */
.btn.round {
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
}

/* 아이콘 버튼 */
.btn.hasIcon .icon {
  width: 18px;
  height: 18px;
}

.btn.hasIcon.min {
  padding: 7px 12px;
  gap: 3px;
  height: 32px;
}

.btn.hasIcon.min .icon {
  width: 15px;
  height: 15px;
}

/***** 텍스트 버튼 *****/
.txt-btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.txt-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray70);
}

.txt-btn:hover {
  color: var(--gray60);
}

.txt-btn:active {
  color: var(--gray60);
}

.txt-btn.blue {
  color: var(--blue50);
}

.txt-btn.blue:hover {
  color: var(--blue60);
}

.txt-btn.blue:active {
  color: var(--blue70);
}

.txt-btn.green {
  color: var(--green50);
}

.txt-btn.green:hover {
  color: var(--green60);
}

.txt-btn.green:active {
  color: var(--green70);
}

.txt-btn.red {
  color: var(--red50);
}

.txt-btn.red:hover {
  color: var(--red60);
}

.txt-btn.red:hover {
  color: var(--red70);
}

/***** 배지 *****/
.badge {
  display: inline-block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--gray10);
  color: var(--gray60);
}

.badge.blue {
  background-color: var(--lightblue5);
  color: var(--blue50);
}

.badge.red {
  background-color: var(--red10);
  color: var(--red50);
}

.badge.green {
  background-color: var(--green10);
  color: var(--green60);
}

/***** 태그 *****/
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px 10px 15px;
  background-color: var(--white);
  border: 1px solid var(--gray20);
  border-radius: 8px;
  position: relative;
  max-width: 100%;
}

.tag.hasX {
  padding: 10px 38px 10px 15px;
}

.uploadFile .tag.hasX {
  padding: 12px 38px 12px 15px;
}

.tag p {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag p + span {
  display: block;
  font-size: 12px;
  color: var(--gray50);
  margin-top: 6px;
}

.tag-x {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.tag-x span {
  display: block;
  width: 14px;
  height: 1px;
  background-color: var(--gray50);
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 0;
}

.tag-x:hover span {
  background-color: var(--red50);
}

.tag-x span:first-child {
  transform: rotate(45deg);
}

.tag-x span:last-child {
  transform: rotate(-45deg);
}

/***** 체크박스, 라디오버튼, 토글 버튼 *****/
.checkbox-list,
.radio-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-list.small,
.radio-list.small {
  gap: 15px;
}

.checkbox-list.align-column,
.radio-list.align-column {
  gap: 15px;
}

.checkbox-list input[type="checkbox"],
.radio-list input[type="radio"],
.switch-wrap input[type="checkbox"] {
  display: none;
}

.checkbox-list label,
.radio-list label,
.switch-wrap label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.switch-wrap label,
.checkbox-list.align-column label,
.radio-list.align-column label {
  align-items: flex-start;
}

.checkbox-btn,
.radio-btn {
  background-color: var(--white);
  border: 1px solid var(--gray30);
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkbox-btn {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.small .checkbox-btn {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.radio-btn {
  width: 18px;
  height: 18px;
  border-radius: 50px;
}

.small .radio-btn {
  width: 16px;
  height: 16px;
}

.radio-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 50px;
}

.checkbox-list input[type="checkbox"]:checked + label .checkbox-btn,
.radio-list input[type="radio"]:checked + label .radio-btn {
  border: 1px solid var(--blue50);
  background-color: var(--blue50);
}

.checkbox-list label:hover .checkbox-btn {
  background-color: var(--lightblue20);
}

.radio-list input[type="radio"]:checked + label .radio-btn {
  border: 1px solid var(--blue50);
  background-color: var(--white);
}

.radio-list input[type="radio"]:checked + label .radio-btn::after {
  background-color: var(--blue50);
}

.radio-list label:hover .radio-btn::after {
  background-color: var(--lightblue20);
}

.checkbox-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3.8' stroke='%23ffffff'><path stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /></svg>")
    center no-repeat;
  background-size: contain;
}

.small .checkbox-btn::after {
  width: 10px;
  height: 10px;
}

.checkbox-btn + p,
.radio-btn + p,
.switch-btn + p {
  font-size: 15px;
  line-height: 1.4;
}

.small .checkbox-btn + p,
.small .radio-btn + p,
.small .switch-btn + p {
  font-size: 14px;
}

/* 토글 */
.switch-wrap {
  display: flex;
}

.switch-btn {
  width: 34px;
  height: 20px;
  background-color: var(--gray20);
  border-radius: 50px;
  position: relative;
  transition: all 200ms;
}

.switch-wrap label:hover .switch-btn {
  background-color: var(--gray25);
}

.switch-wrap input[type="checkbox"]:checked + label .switch-btn {
  background-color: var(--blue50);
}

.switch-btn span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all 200ms;
}

.switch-wrap input[type="checkbox"]:checked + label .switch-btn span {
  left: 17px;
}

/***** 셀렉트박스 *****/
.selectbox-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.selectbox-list input[type="checkbox"],
.selectbox-list input[type="radio"] {
  display: none;
}

.selectbox-btn {
  display: flex;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--gray25);
  color: var(--gray60);
  font-size: 15px;
  transition: all 200ms;
}

.selectbox-btn.round {
  border-radius: 50px;
}

.selectbox-btn:hover {
  border: 1px solid var(--lightblue60);
  color: var(--blue20);
  background-color: var(--lightblue5);
}

.selectbox-list input:checked + .selectbox-btn {
  background-color: var(--white);
  border: 1px solid var(--blue50);
  color: var(--blue50);
  font-weight: 500;
  padding: 8px 16px 8px 32px;
}

.selectbox-list input:checked + .selectbox-btn:hover {
  background-color: var(--white);
}

.selectbox-btn p {
  position: relative;
}

.selectbox-btn p::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3.2' stroke='%231860e8'><path stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /></svg>")
    center no-repeat;
  background-size: contain;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.selectbox-list input:checked + .selectbox-btn p::before {
  display: block;
}

/***** 파일 업로드 *****/
.fileInput-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.fileInput-wrap input[type="file"] {
  display: none;
}

.fileInput-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  padding: 30px 20px;
  border: 1px solid var(--gray20);
  background-color: var(--white);
  border-radius: 10px;
}

.fileInput-btn:hover,
.fileInput-btn.dragover {
  background-color: var(--gray3);
}

.fileInput-btn:active {
  background-color: var(--gray5);
}

.fileInput-contents {
  text-align: center;
  color: var(--gray60);
}

.fileInput-contents .icon {
  width: 40px;
  height: 40px;
  color: var(--gray45);
}

.fileInput-contents p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
}

.uploadFile-wrap {
  width: 100%;
}

/***** 페이지네이션 *****/
.pagination-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  justify-content: row;
  column-gap: 5px;
}

.pagination > li > a,
.pagination > li > span {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  color: var(--gray80);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.pagination > li > a:hover {
  background-color: var(--gray5);
}

.pagination > li > a:active {
  background-color: var(--gray10);
}

.pagination > li > a.active {
  background-color: var(--lightblue10);
  color: var(--blue50);
  font-weight: 500;
}

.pagination > li > span {
  line-height: 24px;
  width: 12px;
}

.pagination > li .icon {
  width: 17px;
  height: 17px;
  top: 3px;
}

/***** 플로팅 *****/
#floating-wrap {
  position: fixed;
  bottom: 25px;
  right: 24px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid var(--gray5);
  background-color: var(--white);
  color: var(--gray50);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}

.floating:hover {
  /* background-color: var(--gray3); */
  border: 1px solid var(--lightblue50);
}

.floating:active {
  background-color: var(--gray3);
}

.floating.blue {
  color: var(--blue50);
}

#top-btn {
  display: none;
}

.floating > .icon,
.floating > .icon-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-symbol {
  min-width: 24px;
  width: 24px;
  margin-top: 1px;
}

.floating-txt {
  display: none;
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translateY(-50%);
  padding: 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--lightblue30);
  border-radius: 50px;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.85);
}

.floating-txt::before {
  content: "";
  width: 20px;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: -15px;
}

.floating-txt p {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray70);
}

.floating-txt .icon {
  min-width: 13px;
  width: 13px;
  height: 13px;
  color: var(--lightblue80);
  top: -1px;
}

.floating.hastxt:hover .floating-txt {
  display: flex;
}

/***** 로딩 애니메이션 *****/
.loader-wrap {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 99;
}

.loader-contents {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loader {
  display: inline-block;
}

.loader span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: loading 1.5s linear infinite;
  background-color: var(--blue50);
}

.loader span:nth-child(2) {
  animation-delay: 0.5s;
  margin: 0px 6px;
}

.loader span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes loading {
  0%,
  20%,
  80%,
  100% {
    background-color: var(--lightblue40);
    transform: scale(0.9);
  }

  50% {
    background-color: var(--blue50);
    transform: scale(1);
  }
}

.loader.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
}

.loader.spinner span {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid var(--blue50);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  background: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-txt {
  font-weight: 500;
  font-size: 17px;
  margin-top: 20px;
}

/********** 유틸리티 **********/
/***** 반응형 *****/
.hidden,
.pc:nth-child(n),
.pcFlex:nth-child(n),
.hp01 .pf01-dp,
.pf01 .hp01-dp {
  display: none !important;
}

.mob:nth-child(n) {
  display: block !important;
}

.mobFlex:nth-child(n) {
  display: flex !important;
}

/***** 넓이 *****/
.full:nth-child(n) {
  width: 100% !important;
}

.half:nth-child(n) {
  width: 50% !important;
}

.third:nth-child(n) {
  width: 33.33% !important;
}

.quarter:nth-child(n) {
  width: 25% !important;
}

.w100 {
  width: 100px !important;
}

.w150 {
  width: 150px !important;
}

.w200 {
  width: 200px !important;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px !important;
}

.w400 {
  width: 400px !important;
}

.w500 {
  width: 500px !important;
}

/***** 높이 *****/
.h100 {
  height: 100px !important;
}

.h150 {
  height: 150px !important;
}

.h200 {
  height: 200px !important;
}

.h250 {
  height: 250px !important;
}

.h300 {
  height: 300px !important;
}

/***** 정렬 *****/
.align-column:nth-child(n) {
  flex-direction: column !important;
}

.align-row:nth-child(n) {
  flex-direction: row !important;
}

/***** 장식 *****/
.underline {
  text-decoration: underline;
}
