:root {
  --black: #000;

  --black0e: #0e111f;
  --black1e: #1e1d1b;
  --black32: #323130;
  --green46: #46bb51;
  --green77: #77d580;
  --blue18: #1877f2;
  --blue5a: #5ac9f8;
  --yellowfff293: #fff293;
  --yellowff100: #ffe100;
  --yellowff200: #ffe200;
  --yellowff500: #fee500;
  --redff: #ff0000;
  --redf6: #f62525;
  --gray00: #00000033;
  --gray77: #777;
  --gray82: #828282;
  --graya9: #a9a9a9;
  --grayb4: #b4b4b4;
  --graybd: #bdbdbd;
  --graycc: #ccc;
  --grayd0: #d0d0d0;
  --grayd2: #d2d2d2;
  --grayd9: #d9d9d9;
  --grayda: #dadada;
  --grayea: #eaeaea;
  --grayeb: #ebedf0;
  --grayf1: #f1f1f1;
  --grayf4: #f4f4f4;
  --white: #fff;
}
@font-face {
  font-family: "jalnan";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.align {
  display: flex;
}
.align.both {
  justify-content: space-between;
}
.align.right {
  justify-content: flex-end;
}
.align.center {
  justify-content: center;
}
.align.vt {
  align-items: flex-start;
}
.align.vm {
  align-items: center;
}
.align.vb {
  align-items: flex-end;
}

.scroll-x::-webkit-scrollbar {
  height: 5px !important;
}
.scroll-x::-webkit-scrollbar-thumb {
  background-color: #ddd !important;
}
.scroll-x::-webkit-scrollbar-track {
  padding: 0 4px !important;
  background-color: #fff !important;
}
.scroll-y::-webkit-scrollbar {
  width: 5px !important;
}
.scroll-y::-webkit-scrollbar-thumb {
  background-color: #ddd !important;
}
.scroll-y::-webkit-scrollbar-track {
  padding: 0 4px !important;
  background-color: #fff !important;
}
.bg-white {
  background: var(--white) !important;
}
.bg-gray {
  background: var(--grayf4) !important;
}
.bg-grayf1 {
    background: var(--grayf1) !important;
}

.large {
  width: 100%;
}
.mx-auto {
  max-width: 500px;
  margin: 0 auto;
}
.mb5 {
    margin-bottom: 5px;
}
.mb24 {
  margin-bottom: 24px !important;
}
.mb33 {
  margin-bottom: 33px !important;
}
.px16 {
  padding: 0 16px;
}
.pt6 {
  padding-top: 6px;
}
.pt8 {
  padding-top: 8px;
}
.pt7 {
  padding-top: 7px;
}
.pt10 {
  padding-top: 10px;
}
.pt12 {
  padding-top: 12px;
}
.pt14 {
  padding-top: 14px;
}
.pt15 {
  padding-top: 15px;
}
.pt16 {
  padding-top: 16px;
}
.pt20 {
  padding-top: 20px;
}
.pt27 {
  padding-top: 27px;
}
.pt28 {
  padding-top: 28px;
}
.pt36 {
  padding-top: 36px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt74 {
  padding-top: 74px;
}
.pt55 {
  padding-top: 55px;
}
.pt86 {
  padding-top: 86px;
}
.pt96 {
  padding-top: 96px;
}

.pb8 {
  padding-bottom: 8px !important;
}
.pb10 {
  padding-bottom: 10px;
}
.pb12 {
  padding-bottom: 12px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb16 {
  padding-bottom: 16px;
}
.pb17 {
  padding-bottom: 17px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb24 {
  padding-bottom: 24px;
}
.pb27 {
  padding-bottom: 27px;
}
.pb28 {
  padding-bottom: 28px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb43 {
  padding-bottom: 43px;
}
.py14 {
  padding: 14px 0;
}

.mt12 {
  margin-top: 12px;
}
.mt14 {
  margin-top: 14px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt21 {
  margin-top: 21px;
}
.mt28 {
  margin-top: 28px;
}
.mt30 {
  margin-top: 30px;
}
.mt37 {
  margin-top: 37px;
}
.mt40 {
  margin-top: 37px;
}
.mt45 {
  margin-top: 45px;
}
.mt55 {
  margin-top: 55px;
}
.mt70 {
  margin-top: 70px;
}
.mt95 {
  margin-top: 95px;
}
.mb7 {
  margin-bottom: 7px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb12 {
  margin-bottom: 12px;
}
.mb18 {
  margin-bottom: 18px;
}
.mb30 {
  margin-bottom: 30px;
}

.gap6 {
  display: grid;
  gap: 6px;
}
.gap06 {
  gap: 6px;
}
.gap16 {
  gap: 16px;
}
.grayf4 {
  background-color: var(--grayf4) !important;
}

header {
  position: relative;
  background: transparent;
}
header > div {
  position: absolute;
  z-index: 100;
  width: 100%;
  max-width: 500px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 16px;
  background: transparent;
}
header .logo a {
  display: block;
  width: 134px;
  height: 15px;
  background: url(../images/logo_txt.svg) no-repeat 0 0 / 100%;
}
header .logo button {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/ico_setting.svg) no-repeat 0 0 / 100%;
}
.header-sub {
  height: 54px;
  max-width: 500px;
  margin: 0 auto;
}
.header-sub > div {
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
}
.header-sub .btn-back {
  display: block;
  width: 9px;
  height: 22px;
  background: url(../images/ico_back.svg) no-repeat 0 0 / 100%;
}
.header-sub h2 {
  text-align: center;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

/* 메인 */
.main {
  /* padding-bottom: 130px; */
}
.content {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  background: var(--grayf1);
  padding-bottom: 126px;
}
.point-board {
  width: 100%;
  height: 530px;
  background: var(--blue5a) url(../images/img_point_bg.png) no-repeat center 100% / 100%;
}
.point-board.vip {
    height: 600px;
    background-image: url(../images/img_point_bg_vip.png);
}
.point-board__view {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 12px;
}
.point-board__view.none {
  cursor: inherit;
}
.point-board__view p {
  color: var(--black32);
  font-size: 14px;
  font-weight: 700;
}
.point-board__view strong {
  color: var(--black32);
  font-size: 32px;
  font-weight: 700;
  padding-right: 22px;
  background: url(../images/ico_right_gray.svg) no-repeat 100% 50% / 12px;
}
.point-board__view.none strong {
  background-image: none;
  padding-right: 0;
}
.point-board__view.vip { 
    position: relative;
}
.point-board__view.vip::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70.67px;
    border-radius: 10px;
    box-shadow: 0px 0px 32.3px 0px #FFEE67;

    animation-name: fadeIn; /* 사용할 키프레임의 이름을 지정합니다. */
    animation-duration: 2s; /* 애니메이션의 지속 시간을 지정합니다. */
    animation-iteration-count: infinite;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }

}


.point-board__status {
  background: var(--white);
  border-radius: 14px;
  margin-top: -64px;
}
.point-board__status .title {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grayea);
}
.point-board__status .title strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}
.point-board__status ul li {
  padding: 14px 16px;
}
.point-board__status ul li p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.point-board__status ul li strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.title-type1 strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.board-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.board-scroll__card {
  padding: 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  background: var(--white);
  border-radius: 14px;
}
.board-scroll__card:nth-child(1) .icon {
  background: url(../images/ico_pencil.svg) no-repeat center center / 100%;
}
.board-scroll__card:nth-child(2) .icon {
  background: url(../images/ico_pencil.svg) no-repeat center center / 100%;
}
.board-scroll__card .desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.board-scroll__card strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 145%;
  text-align: center;
}
.board-scroll__card p {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}

/* 하단 네비게이션 */
.nav-foot__cont {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  position: fixed;
  z-index: 310;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 12.7px 0px rgba(0, 0, 0, 0.08);
}
.nav-foot {
  position: fixed;
  bottom: 0;
}
.nav-foot__cont ul {
  height: 100%;
  height: 60px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.nav-foot__cont ul li {
  width: 50px;
  height: 45px;
  margin: 0 auto;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.nav-foot__cont ul li.home {
  background: url("../images/ico_home_off.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.home.active {
  background: url("../images/ico_home_on.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.point {
  background: url("../images/ico_pointmall_off.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.point.active {
  background: url("../images/ico_pointmall_on.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.mission {
  background: url("../images/ico_mission_off.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.mission.active {
  background: url("../images/ico_mission_on.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.news {
  background: url("../images/ico_news_off.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.news.active {
  background: url("../images/ico_news_on.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.info {
  background: url("../images/ico_myinfo_off.svg") no-repeat center 0 / 29px;
}
.nav-foot__cont ul li.info.active {
  background: url("../images/ico_myinfo_on.svg") no-repeat center 0 / 29px;
}

.nav-foot__cont ul li a {
  display: block;
  padding-top: 28px;
  color: #b4b4b4;
  font-family: "Roboto";
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}
.nav-foot__cont ul li a.active {
  color: var(--redf6);
}
.board-banner__list li {
  border-radius: 14px;
  overflow: hidden;
}
.board-banner__list img {
  width: 100%;
  object-fit: cover;
}
.board-list1 ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.board-list1 li {
  display: grid;
  grid-template-columns: 1fr minmax(82px, auto);
  align-items: center;
}
/* .board-list1 a {
} */
.board-list1__content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.board-list1__content .desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.board-list1__content .desc strong {
  color: var(--black);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.board-list1__content .desc p {
  color: var(--graya9);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}
.bedge-coin {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 13px;
  height: 38px;
  border-radius: 38px;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  background: var(--white) url(../images/ico_coin_off.svg) no-repeat 13px 50% / 25px;
}
.bedge-coin.active {
  background-image: url(../images/ico_coin.svg);
}
.board-accordion {
  position: fixed;
  z-index: 100;
  bottom: 56px;
  width: 100%;
}
.board-accordion__title {
  width: 100%;
  max-width: 500px;
  display: block;
  background: var(--yellowff200);
  border-radius: 14px 14px 0 0;
  padding: 9px 21px;
}
.board-accordion__title img {
  display: block;
  margin: 0 auto;
  transition: all 0.5s;
  transform: rotate(0);
}
.board-accordion__title img.active {
  transform: rotate(180deg);
}
.board-accordion__title strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}
.badge-point {
  display: block;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.badge-point2 {
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  background: var(--yellowff200);
  padding: 8px 12px;
  border-radius: 30px;
  text-align: center;
}
.board-accordion__list {
  background: var(--white);
  max-height: 0;
  overflow-y: auto;
  transition: max-height 0.7s ease-in-out;
}
.board-accordion__list.active {
  max-height: 452.69px;
}
.board-accordion__list li {
  width: 100%;
  max-width: 500px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--grayd9);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr minmax(82px, auto);
  align-items: center;
}
.board-accordion__list li:last-child {
  border-bottom: 0;
}
/* .board-accordion__list a {
} */
.board-accordion__list .bedge-coin {
  background: var(--grayf4) url(../images/ico_coin_off.svg) no-repeat 13px 50% / 25px;
}
.board-accordion__list .bedge-coin.active {
  background-image: url(../images/ico_coin.svg);
}
.board-accordion__content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.board-accordion__content .desc {
  display: flex;
  gap: 16px;
}
.board-accordion__content .desc strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}
.board-accordion__content .desc p {
  color: var(--graya9);
  font-size: 14px;
  font-weight: 400;
}
.content.white {
  background: var(--white);
}

.input-type input {
  width: 100%;
  padding: 13px 16px;
  height: 48px;
  border: 1px solid var(--gray82);
  border-radius: 48px;
  font-size: 16px;
}
.input-type input::placeholder {
  color: var(--graybd);
  font-size: 15px;
  font-weight: 400;
}
.input-type input.success {
  border: 2px solid var(--green46);
  /* background-image: url(../images/ico_success.svg); */
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.input-type input.success2 {
  border: 2px solid var(--green46);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.input-type input.fail {
  border: 2px solid var(--redff);
  /* background-image: url(../images/ico_fail.svg); */
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.input-type input.fail2 {
  border: 2px solid var(--redff);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.input-type .textarea {
  width: 100%;
  border: 1px solid var(--gray82);
  border-radius: 22px;
  padding: 16px;
  height: 230px;
  resize: none;
}
.input-type .textarea::placeholder {
  color: var(--graybd);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}
.input-type .alert {
  color: var(--redff);
  font-size: 14px;
  line-height: 20.031px;
  letter-spacing: -0.49px;
  padding-top: 1px;
}
.input-title .title {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.992px;
  letter-spacing: -0.49px;
  padding-bottom: 12px;
}
.input-title .title2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.input-title .explanation {
  color: var(--gray82);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.992px;
  letter-spacing: -0.49px;
  padding-bottom: 10px;
}
.input-type1 {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.input-type2 {
  display: grid;
  grid-template-columns: 1fr minmax(74px, auto);
  gap: 16px;
}
.input-type2 button {
  height: 44px;
  border-radius: 44px;
  background: var(--yellowfff293);
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.75px;
}
.input-type3 {
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  gap: 4px;
}
.input-type4 {
  display: grid;
  grid-template-columns: 1fr 14px 1fr 1fr;
  gap: 8px;
}
.input-type .select {
  padding: 13px 16px;
  height: 48px;
  border: 1px solid var(--gray82);
  border-radius: 48px;
  background: url(../images/ico_arrow_select.svg) no-repeat calc(100% - 16px) 50%;
  cursor: pointer;
  color: var(--graybd);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.input-type .select.success {
  border: 2px solid var(--green46);
}
.input-type .select.fail {
  border: 2px solid var(--redff);
}
.input-type input[type="date"] {
  color: var(--graybd);
}
.input-type input[type="date"]::before {
  content: attr(data-placeholder);
  width: 100%;
  color: red;
  color: var(--graybd);
}
.tab-type1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tab-type1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  border-bottom: 4px solid var(--grayd9);
  text-align: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 20.992px;
  letter-spacing: -0.56px;
}
.tab-type1 a.active {
  border-bottom: 4px solid var(--yellowff100);
}

.check-type1 {
  display: block;
  margin-bottom: 15px;
}

.check-type1 input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.check-type1 label {
  position: relative;
  cursor: pointer;
  color: var(--black);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.check-type1 label:before {
  content: "";
  padding: 10px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  background: var(--grayd9) url(../images/ico_check.svg) no-repeat center center/ 11px;
}

.check-type1 input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--yellowff100) url(../images/ico_check.svg) no-repeat center center/ 11px;
}

.login-check a {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.065px;
}

.btn-yellow-off {
  padding: 16px;
  height: 48px;
  border-radius: 48px;
  background: var(--yellowfff293);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.56px;
  text-align: center;
}
.btn-yellow-off.on {
  background: var(--yellowff200);
}
.btn-yellow {
  padding: 16px;
  height: 48px;
  border-radius: 48px;
  background: var(--yellowff200);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.56px;
  text-align: center;
}
.btn-gray.small {
  background: var(--grayf1);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  padding: 8px 12px;
  border-radius: 30px;
}
.btn-gray.active {
  background: var(--yellowff200);
  font-weight: 700;
}
.title-login {
  position: relative;
  z-index: 100;
}
.title-login span {
  display: block;
  width: 93px;
  margin: 0 auto !important;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  background: var(--white);
  padding: 0 16px;
}
.title-login::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--graycc);
}
.login-easy {
  max-width: 180px;
  margin: 0 auto;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  flex-direction: column;
  gap: 14px;
}
.login-easy a {
  display: flex;
  align-items: center;
  height: 54px;

  border-radius: 54px;
  white-space: nowrap;
  color: var(--black);
  font-family: Roboto;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
}
.btn-google {
  border: 1px solid var(--gray82);
  background: var(--white) url(../images/ico_google_login.svg) no-repeat 32px 50%;
  padding: 11px 32px 11px 65px;
}
.btn-kakao {
  background: var(--yellowff500) url(../images/ico_kakao_login.svg) no-repeat 18px 50%;
  padding: 11px 18px 11px 58px;
}
.btn-facebook {
  background: var(--blue18) url(../images/ico_facebook_login.svg) no-repeat 18px 50%;
  padding: 11px 18px 11px 44px;
  color: var(--white) !important;
}
.join-link {
  gap: 10px;
}
.join-link p {
  color: #00000033;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: right;
}
.join-link a {
  color: #000;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: right;
}

/* 약관동의 체크박스 */
.terms-input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.terms-input + label {
  position: relative;
  cursor: pointer;
  color: var(--gray82);
  font-family: Noto Sans KR;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.992px;
  letter-spacing: -0.49px;
}

.terms-input + label:before {
  content: "";
  padding: 10px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  background: url(../images/ico_check2_off.svg) no-repeat center center/ 11px;
}

.terms-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: url(../images/ico_check2_on.svg) no-repeat center center/ 11px;
}
/* 약관동의 체크박스 checkAll */
#checkbox1 {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

#checkbox1 + label {
  position: relative;
  cursor: pointer;
  color: var(--black);
  font-family: Noto Sans KR;
  font-size: 18px;
  font-weight: 400;
  /* line-height: 20.992px;
  letter-spacing: -0.63px; */
}

#checkbox1 + label:before {
  content: "";
  padding: 10px;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  background: var(--grayd9) url(../images/ico_check.svg) no-repeat center center/ 11px;
}

#checkbox1:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--yellowff100) url(../images/ico_check.svg) no-repeat center center/ 11px;
}
.terms-title {
  display: block;
  color: var(--black);
  font-family: Noto Sans KR;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 0;
}

.checkbox-container.all {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray00);
}
.checkbox-container.arrow {
  background: url(../images/ico_arrow_right.svg) no-repeat 100% 50%;
}
.checkbox-wrap {
  border-bottom: 1px solid var(--gray00);
}
.logo-bx {
  padding: 90px 16px 35px 16px;
}
.logo-bx img {
  display: block;
  margin: 0 auto;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}

.intro-motion-content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-intro {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  /* padding-top: 97px; */
  padding-bottom: 40px;
}
.slide-intro > div strong {
  display: block;
  color: var(--black);
  font-size: 32px;
  font-weight: 800;
  line-height: 155%;
  text-align: center;
  padding-top: 75px;
}
.nav-dots ul {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 58px;
}
.nav-dots ul .dots {
  display: block;
  width: 16px;
  height: 8px;
  border-radius: 8px;
  background: var(--grayd0);
}
.nav-dots ul .dots.active {
  background: var(--yellowff100);
}
.position-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 16px;
}

/* 이벤트 */
.board-event {
  background: var(--blue5a) url(../images/bg_coin1.png) no-repeat center center / 100%;
  padding-bottom: 23px !important;
}

.board-participate {
  background: var(--green46) url(../images/bg_coin2.png) no-repeat center 0 / 100%;
}
.board-event__title {
  text-align: center;
}
.board-event__title strong {
  color: var(--white);
  font-family: "jalnan";
  font-size: 40px;
  line-height: 155%;
}
.board-event__title strong span {
  color: var(--yellowff500);
}
.board-event__title h2 {
  color: var(--white);
  font-family: "jalnan";
  font-size: 70px;
  line-height: 155%;
}
.board-event__desc {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
.board-event__desc span {
  background: var(--yellowff200);
  padding: 0 3px;
}
.board-event__content {
  background: var(--grayf1);
  padding: 18px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.board-event__content strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.board-event__content p {
  color: var(--gray82);
  font-size: 14px;
  font-weight: 500;
}
.board-event__content i {
  display: block;
  border-radius: 12px;
  background: var(--white);
  padding: 16px 24px;
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
  line-height: 20.992px;
}
.board-event__content i.active {
  background: var(--yellowff200);
}
.board-participate {
  padding-top: 29px !important;
  padding-bottom: 45px !important;
}
.board-participate__title {
  display: block;
  color: var(--white);
  font-family: "jalnan";
  font-size: 28px;
  font-weight: 400;
  line-height: 155%;
  text-align: center;
}
.board-participate__img {
  max-width: 183px;
  margin: 0 auto;
}
.board-participate__img img {
  display: block;
  width: 100%;
}
.board-participate__desc {
  padding: 16px;
  background: var(--grayf1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.board-participate__desc li {
  display: flex;
  align-items: center;
  height: 27px;
  padding-left: 36px;
  background: url(../images/ico_coin.svg) no-repeat 0 50% / 27px;
  font-size: 14px;
}
.board-participate__status {
  background: var(--grayf1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  padding: 16px 36px;
  text-align: center;
}
.board-participate__status p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 12px;
}
.board-participate__status strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}
.board-participate__status > div:nth-child(1) strong {
  background: url(../images/ico_mem.svg) no-repeat 0 50%;
  padding-left: 24px;
}
.point-board2 {
  background: var(--grayf1);
  padding-bottom: 21.5px;
}
.point-board .coin1 {
  transform: translate(5px, -20vw);
}
.select-region__layer {
  display: none;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.select-region__layer.active {
  display: block;
}
.select-region {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 30px 30px 0px 0px;
  background: var(--white);
}
.select-region__title {
  color: var(--gray82);
  font-size: 15.498px;
  font-weight: 600;
  text-align: center;
  padding: 17px 26px;
  border-bottom: 1px solid #bdbdbd;
}
.select-region__list {
  padding: 13px;
}
.select-region__list td {
  text-align: center;
  height: 64px;
  border: 1px solid var(--graybd);
}
.select-region__list td button {
  background: transparent;
  height: 64px;
  width: 100%;
  color: var(--gray82);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.select-region__list td.active button {
  background: var(--yellowfff293);
}
.slide-intro__desc {
  color: var(--gray82);
  font-size: 16px;
  line-height: 155%;
  text-align: center;
}
.slide-intro__img {
  display: block;
  width: 166px;
  margin: 0 auto;
}
.slide-intro__codepass {
  color: var(--gray82);
  font-size: 14px;
  font-weight: 400;
  line-height: 155%;
  text-align: center;
}
.slide-intro__codepass a {
  color: var(--black);
  font-weight: 700;
}
.tab-type3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tab-type3:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--grayda);
}
.tab-type3 .btn-tab3 {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gray82);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.992px;
  text-align: center;
  height: 51px;
  border-bottom: 5px solid transparent;
}
.tab-type3 .btn-tab3.active {
  border-bottom: 5px solid var(--yellowff200);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 20.992px;
}
.point-list {
  background: var(--white);
}
.tab-type4 {
  gap: 6px;
  padding: 16px 16px;
}
.tab-type5-nav {
  width: auto;
  white-space: nowrap;
}

.tab-type5 {
  display: flex;
  gap: 6px;
  overflow-x: auto; /* 수평 스크롤이 필요한 경우 */
  flex-wrap: nowrap; /* 가로로 줄 바꿈 방지 */
  padding: 14px 0;
}
.table-type1 {
  padding-bottom:80px;
}

.table-type1::-webkit-scrollbar {
  height: 5px;
}

.table-type1::-webkit-scrollbar-thumb {
  background-color: #ddd; /* 스크롤바 색상 */
}

.table-type1::-webkit-scrollbar-track {
  padding: 0 4px; /* 스크롤바 트랙 패딩 */
  background-color: #fff; /* 스크롤바 트랙 색상 */
}

.table-type1 table {
  min-width: 300px;
}
.table-type1 td {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  height: 42px;
}
.table-type1 td:first-child {
  text-align: center;
}
.table-type1 td:nth-child(2) {
  padding-left: 16px;
}
.table-type1 td strong {
  display: block;
  text-align: center;
}
.table-list {
  display: none;
}
.table-list.active {
  display: block;
}
.myinfo-menu__title {
  display: block;
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grayf1);
}
.myinfo-menu__list li a {
  display: block;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grayf1);
}
.border-bottom-d2 {
  border-bottom: 1px solid var(--grayd2);
}
.agree-cont {
  display: grid;
  gap: 22px;
}

.agree-cont label {
  color: var(--graybd);
  font-size: 17px;
  font-weight: 400;
}
input.switch {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 50px !important;
  height: 27px;
  border-radius: 30px;
  cursor: pointer;
  background: #ccc;
  transition: box-shadow 0.3s ease-in-out, padding 0.25s ease-in-out;
  transition-delay: 0.1s, 0s;
}
input.switch:focus {
  border: 0;
  outline: 0;
}
input.switch:checked {
  transition-delay: 0s, 0s;
  box-shadow: inset 0 0 0 2.62857em var(--yellowff100) !important;
  padding-left: 23px;
}
input.switch:before {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: 2px;
  background-color: var(--white);
  border-radius: 2.1em;
  transition: all 0.1s ease 0.1s;
}
input.switch:before,
input.switch:after {
  content: "";
  display: block;
}
input.switch:active::before {
  transition: all 0.1s ease 0.05s;
}
.agree-cont li {
  border: 0.5px solid var(--gray82);
  padding: 16px 20px;
  border-radius: 54px;
}
.myinfo-menu__main {
  display: block;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid var(--grayf1);
  padding: 16px;
}
.fixed-bottom {
  width: 100%;
  max-width: 500px;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.withdrawal-guide strong {
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: -0.77px;
}
.withdrawal-guide p {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.455px;
}
.withdrawal-guide p span {
  color: #f00;
  font-size: 14px;
  font-weight: 600;
  line-height: 20.992px;
  letter-spacing: -0.49px;
}
.btn-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--graybd);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--gray82);
  border-radius: 48px;
}
.shadow {
  box-shadow: 0px 0px 12.7px 0px rgba(0, 0, 0, 0.08);
}
.text-right {
  text-align: right;
}
.dialog {
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 500px;
  border: 0;
  left: 50%;
  top: calc(100% - 113px);
  transform: translateX(-50%);
  margin: 0;
  border-radius: 10px 10px 0 0;
}
.dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.dialog.invite {
  background: var(--white);
}
.dialog.invite li + li {
  border-top: 1px solid var(--grayeb);
}
.dialog.invite button {
  width: 100%;
  display: inline-block;
  padding: 21px 18px 21px 51px;
  color: var(--black0e);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-align: left;
}
.dialog.invite .btn-kakao-send {
  background: url(../images/ico_kakao_send.svg) no-repeat 18px center / 25px;
}
.dialog.invite .btn-message-send {
  background: url(../images/ico_message_send.svg) no-repeat 18px center / 25px;
}
.dialog.withdraw {
  width: calc(100% - 32px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  max-width: 380px;
}
.dialog.withdraw > div {
  display: grid;
  gap: 16px;
}
.dialog.withdraw strong {
  display: block;
  padding-top: 36px;
  color: var(--black0e);
  font-size: 18px;
  font-weight: 700;
  line-height: 155%;
}
.dialog.withdraw p {
  color: var(--black0e);
  font-size: 14px;
  font-weight: 500;
  line-height: 155%;
}
.dialog.withdraw button {
  margin-top: 30px;
  width: 100%;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding: 20px 0;
  background: var(--yellowff200);
}
/* 첨부파일 */
#file {
  display: none;
}
.input-file-button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 16px 18px;
  background-color: #fff7b8;
  border-radius: 4px;
  cursor: pointer;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  border-radius: 48px;
}
.company-info__list {
  display: grid;
  gap: 45px;
}
.company-info__list strong {
  display: block;
  color: var(--black1e);
  font-size: 16px;
  font-weight: 600;
  line-height: 20.992px;
  letter-spacing: -0.56px;
  padding-bottom: 12px;
}
.company-info__list p {
  color: var(--gray82);
  font-size: 15px;
  font-weight: 400;
}
.attached-file__img {
  width: 100%;
  max-width: 172px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.attached-file__img li {
  border-radius: 10px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.attached-file__img li img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.popup {
  display: none;
}
.popup.active {
  display: block;
}
.popup .layer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.popup__cont {
  width: calc(100% - 32px);
  height: calc(100% - 100px);
  max-width: 500px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1000;
  transition: all 1s;
}
.popup__cont.active {
  transform: translate(-50%, 0);
}
.popup__header {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 22px 16px;
  background: var(--white);
  border-radius: 10px 10px 0 0;
}
.popup__header h3 {
  display: block;
  color: var(--black0e);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.54px;
  text-align: center;
}
.popup__header .btn-close {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/ico_close.svg) no-repeat 0 0 / 100%;
}
.popup-desc {
  background: var(--white);
  padding: 16px;
  height: calc(100vh - 170px);
  overflow: auto;
}
.popup-desc::-webkit-scrollbar {
  width: 5px !important;
}
.popup-desc::-webkit-scrollbar-thumb {
  background-color: #ddd !important;
}
.popup-desc::-webkit-scrollbar-track {
  padding: 0 4px !important;
  background-color: #fff !important;
}
.popup-desc strong {
  display: block;
  color: var(--black1e);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.54px;
  padding-bottom: 8px;
  padding-top: 16px;
  text-align: left;
}
.popup-desc p {
  color: var(--gray77);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.42px;
  padding-bottom: 8px;
}
.popup-desc .detail-1 {
  padding-left: 16px;
}
.popup-desc .detail-1 strong {
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
.popup-desc .detail-1 p {
  font-size: 14px;
  padding-bottom: 0;
  line-height: 140%;
}
.table-type-terms {
  border: 1px solid #000;
  margin: 20px 0;
}
.table-type-terms thead tr {
  border-bottom: 1px solid #000;
}
.table-type-terms thead tr th {
  border-right: 1px solid #000;
}
.table-type-terms tbody tr {
  border-bottom: 1px solid #000;
}
.table-type-terms tbody tr th,
.table-type-terms tbody tr td {
  border-right: 1px solid #000;
}

.app-logo img {
  width: 48px;
  height: 48px;
}
.mission-banner {
  height: auto;
  background-color: var(--grayd9);
}
.mission-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ad-list__list li {
  /* display: block; */
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 12px 13px;
  border-radius: 14px;
}
.charging-station {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.charging-station a {
  display: block;
  width: 100%;
  padding: 16px 14px;
  background: var(--grayf1);
  display: grid;
  gap: 10px;
  grid-template-columns: 57px 1fr minmax(79px, auto);
  align-items: center;
  border-radius: 14px;
}
.heading {
  color: var(--black);
}
.heading.large {
  font-size: 22px;
  font-weight: 700;
}
.my-point {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
  background: var(--grayf1);
  border-radius: 44px;
  gap: 6px;
}
.text-type1 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.text-type2 {
  color: var(--gray82);
  font-size: 14px;
  font-weight: 600;
}
.text-type3 {
    color: var(--black);
    font-size: 18px;
    font-weight: 900;
}
.text-type4 {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
}
.banner-type1 {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px 12px;
}

.banner-type1 img {
  object-fit: cover;
  width: 100%;
  height: 180px;
}
.coin-fall { 
    position: relative;
    height: 300px;
    /* background: rgba(255, 0, 0, 0.154); */
}
.coin-fall img { 
    opacity: 0;
    position: absolute;
    top: 0;
    width: 40px;
}
#motionCoin1 { 
    left: 0;
    transition-duration: .7s;
    transition-delay: 0s;
}
#motionCoin1.active {
    opacity: 1;
    top: 80%;
}
#motionCoin2 { 
    left: 33px;
    transition-duration: 1s;
    transition-delay: 0s;
}
#motionCoin2.active { 
    opacity: 1;
    top: 70%;
}
#motionCoin3 { 
    left: 68px;
    transition-duration: 1.5s;
    transition-delay: 0s;
}
#motionCoin3.active { 
    opacity: 1;
    top: 81%;
}
#motionCoin4 { 
    right: 83px;
    transition-duration: 1.3s;
    transition-delay: 0s;
}
#motionCoin4.active { 
    opacity: 1;
    top: 82%;
}
#motionCoin5 { 
    right: 40px;
    transition-duration: .7s;
    transition-delay: 0s;
}
#motionCoin5.active {
    opacity: 1;
    top: 80%; 
}
#motionCoin6 { 
    right: 20px;
    transition-duration: 1.5s;
    transition-delay: 0s;
}
#motionCoin6.active { 
    opacity: 1;
    top: 69%;
}
#motionCoin7 { 
    right: 0;
    transition-duration: .5s;
    transition-delay: 0s;
}
#motionCoin7.active { 
    opacity: 1;
    top: 80%;
}
.ico-badge-vip { 
    width: 72px;
    height: 24px;
    background: url(../images/ico_badge_vip.svg) no-repeat 0 0 / contain;
}
.point-board__view strong.text-vip { 
    position: relative;
    background: linear-gradient(90deg, #FFCF24 0%, #00E0FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.point-board__view strong.text-vip::after { 
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-10px);
    right: 0;
    width: 12px;
    height: 196px;
    background: url(../images/ico_right_gray.svg) no-repeat 0 0 / contain;
}
.toast-vip { 
    opacity: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 281px;
    height: 146px;
    position: fixed;
    z-index: 0;
    /* bottom: -157px; */
    bottom: -89px;
    /* bottom: 89px; */
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/bg_welcome_vip.png) no-repeat 0 0 / cover;
    
    transition-duration: 1s;
    transition-delay: .5s;
}
.toast-vip.active { 
    opacity: 1;
    display: flex;
    bottom: 57px;
}
.toast-accumulate { 
    opacity: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 343px;
    height: 77px;
    position: fixed;
    z-index: 0;
    bottom:5px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FED500;
    box-shadow: 0px 0px 9.919px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    transition-duration: 1s;
    transition-delay: 2.5s;
}
.toast-accumulate.active { 
    opacity: 1;
    bottom: 92px;
}

/* 뉴스 페이지 news_page */
#news ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
    list-style-type: none;
}
#news ul li {
    padding: 10px;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0px 0px 12.7px 0px rgba(0, 0, 0, 0.08);
}
#news ul li img {
    display: block;
    width: 100%;
    aspect-ratio: 1.856 / 1;
    object-fit: cover;
    border-radius: 6px;
}
#news ul div {
    padding: 16px 0 6px 0;
}
#news ul div>h4 {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-bottom: 8px;
}
#news ul div>p {
    color: #AAA;
    font-size: 14px;
    font-weight: 400;
}
#progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: #f3f4f6;
    z-index: 9999;
}
.progress-bar-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}