@charset "UTF-8";
/*
	CSS Triangle
	used for creating CSS only triangles
	example:
*/
/*
p {
  @include multi-line-ellipsis(2); // 2줄을 초과하면 말줄임표 처리
  width: 200px;
}
 */
/*
	Hide text
*/
/*
	Typography
	Text image replacement, with responsive ratio
*/
@font-face {
  font-family: "pretendard";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Regular.woff") format("woff"), url("../fonts/Pretendard-Regular.ttf") format("truetype"), url("../fonts/Pretendard-Regular.otf") format("opentype");
}
@font-face {
  font-family: "pretendardSB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-SemiBold.woff") format("woff"), url("../fonts/Pretendard-SemiBold.ttf") format("truetype"), url("../fonts/Pretendard-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Bold.woff") format("woff"), url("../fonts/Pretendard-Bold.ttf") format("truetype"), url("../fonts/Pretendard-Bold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardEB";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-ExtraBold.woff") format("woff"), url("../fonts/Pretendard-ExtraBold.ttf") format("truetype"), url("../fonts/Pretendard-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "pretendardL";
  text-transform: normal;
  font-weight: normal;
  src: url("../fonts/Pretendard-Light.woff") format("woff"), url("../fonts/Pretendard-Light.ttf") format("truetype"), url("../fonts/Pretendard-Light.otf") format("opentype");
}
h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-family: "pretendarEB", Arial, sans-serif;
  font-size: 4.4rem;
}

h2 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 3rem;
}

h3 {
  font-family: "pretendardB", Arial, sans-serif;
  font-size: 2.6rem;
}

h4 {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 2.4rem;
}

div,
p,
span,
input,
a,
li {
  color: #000000;
  font-family: "pretendard", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  word-break: keep-all;
}

.txt-aCenter {
  text-align: center !important;
}
.txt-aLeft {
  text-align: left !important;
}
.txt-white {
  color: #ffffff !important;
}
.txt-black {
  color: #000000 !important;
}
.txt-gray {
  color: #666666 !important;
}
.txt-big1 {
  word-break: break-all;
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .txt-big1 {
    font-size: 3.6rem;
  }
}
.txt-small {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .txt-small {
    font-size: 1.4rem;
  }
}
.txt-bold {
  font-family: "pretendardB", Arial, sans-serif;
}
.txt-Sbold {
  font-family: "pretendardSB", Arial, sans-serif;
}
.txt-light {
  font-family: "pretendardL", Arial, sans-serif;
}

.placeholder-gray::-moz-placeholder {
  color: #666666 !important;
}

.placeholder-gray::placeholder {
  color: #666666 !important;
}

br.break-mb {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.break-mb {
    display: block;
  }
}

/**
reset
**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "pretendard", Arial, sans-serif;
}

html,
body {
  width: 100%;
  font-size: 10px;
  font-weight: 400;
  color: #000000;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0;
}

ol,
ul,
li {
  list-style: none;
}

input,
textarea {
  border: 0;
  border-radius: 0px;
  /* iOS 둥근모서리 제거 */
}

input,
select,
textarea,
button {
  outline: none;
}

button {
  background-color: transparent;
}

textarea {
  resize: none;
}

select {
  cursor: pointer;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  border-style: hidden;
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

th,
td {
  border-collapse: collapse;
}

caption,
legend {
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

form,
fieldset,
iframe,
button,
hr {
  border: 0;
}

i,
em,
address {
  font-style: normal;
}

button {
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}

a {
  outline: 0;
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}
.d-flexBtw {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.d-flexCenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.w-auto {
  width: auto !important;
}

.hide {
  display: none !important;
}

.txt-disc {
  color: #666666;
  font-size: 1.4rem;
  margin-top: 5px;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#customGoogleBtn iframe {
  height: 100px !important;
  transform: scale(1.5);
  transform-origin: top;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 10px;
}

.dr-peach-wrap {
  color: #222222;
  background-color: #ffffff;
}
.dr-peach-wrap .dp-sub {
  background-color: #F9FAFB;
}
.dr-peach-wrap .dp-section-title {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 5.6rem;
  text-align: center;
  margin-bottom: 6rem;
  padding-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .dr-peach-wrap .dp-section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
  }
}

.dp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  .dp-container {
    max-width: initial;
    padding: 20px;
  }
}

.dp-header {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #F0F0F0;
}
@media only screen and (max-width: 768px) {
  .dp-header {
    padding: 12px 20px;
  }
}
.dp-header .dp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .dp-header .dp-container {
    padding: 0;
  }
}
.dp-header .dp-logo img {
  max-width: 9.6rem;
}
@media only screen and (max-width: 768px) {
  .dp-header .dp-logo img {
    max-width: 6.9rem;
  }
}
.dp-header .dp-btn-download {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 30px;
}
@media only screen and (max-width: 768px) {
  .dp-header .dp-btn-download {
    font-size: 1.4rem;
    padding: 8px 17px;
  }
}

.dp-footer {
  background-color: #212731;
  color: #ffffff;
  padding: 10rem 0 7.3rem;
}
@media only screen and (max-width: 768px) {
  .dp-footer {
    padding: 3rem 0 2rem;
  }
}
.dp-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .dp-footer__top {
    display: block;
    margin-bottom: 4.6rem;
  }
}
.dp-footer__top h2 {
  color: #ffffff;
  font-family: "pretendard", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .dp-footer__top h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
.dp-footer__top p {
  color: #ffffff;
  font-family: "pretendardL", Arial, sans-serif;
  font-size: 2.7rem;
}
@media only screen and (max-width: 768px) {
  .dp-footer__top p {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.dp-footer__stores {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .dp-footer__stores {
    display: block;
  }
}
.dp-footer__stores button {
  background-color: #ffffff;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .dp-footer__stores button {
    width: 100%;
  }
  .dp-footer__stores button:not(:last-child) {
    margin-bottom: 1.4rem;
  }
}
.dp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .dp-footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
.dp-footer__info {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .dp-footer__info {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
}
.dp-footer__logo {
  width: 22%;
  max-width: 9.6rem;
}
@media (max-width: 768px) {
  .dp-footer__logo {
    max-width: 7.4rem;
  }
}
.dp-footer__text p {
  color: #8F9AA8;
  line-height: 1.8;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .dp-footer__text p {
    margin-left: 0;
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.dp-footer__sns {
  display: flex;
  gap: 1.4rem;
}
.dp-footer__sns button {
  min-width: initial;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .dp-footer__sns button {
    width: 60px;
    height: 60px;
    justify-content: center;
    margin-top: 3rem;
  }
}
.dp-footer__sns--mb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .dp-footer__sns--mb {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .dp-footer__sns--pc {
    display: none;
  }
}

button,
div,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus,
div:focus,
a:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  min-width: 100px;
  background-color: #000000;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 16px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 14px 16px;
  }
}
.btn:disabled {
  background-color: #666666 !important;
  color: #ffffff;
}
.btn--round {
  border-radius: 100px;
}
.btn-center {
  display: block;
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  .btn-center {
    margin: 40px auto 0;
  }
}
.btn-more {
  background: #99A1AF;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 1.4rem 2.2rem;
}
@media only screen and (max-width: 768px) {
  .btn-more {
    font-size: 1.6rem;
  }
}

.form__item {
  width: 100%;
}
.form__item:not(:first-of-type) {
  margin-top: 24px;
}
.form__item-col2 {
  display: flex;
}
.form__item-col2:not(:first-of-type) {
  margin-top: 24px;
}
.form__item-col2 .form__item-col {
  display: flex;
  width: 50%;
}
.form__item-underline:not(.form__item-underline:last-child) {
  border-bottom: 1px solid #666666;
  margin-bottom: 20px;
  padding-bottom: 30px;
}
.form__label {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 8px 0;
  font-family: "pretendardSB", Arial, sans-serif;
}
.form__label--bullet label:after {
  content: "*";
  margin-left: 2px;
}
.form__label__txt {
  margin-top: 2px;
  font-size: 10px;
}
.form__label--hide {
  display: none;
}
.form__label .alert {
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .form__label .alert {
    margin-top: 0;
  }
}
.form__guide {
  margin-top: 2px;
  font-size: 10px;
}
.form__cnt {
  width: 100%;
}
.form__alert {
  margin-top: 8px;
  font-size: 12px;
  color: #666666;
  text-align: left;
}
.form__div, .form__p {
  padding: 10px;
}
.form__txt {
  padding: 8px 0;
}
.form__alert {
  margin-top: 8px;
  font-size: 12px;
  color: #666666;
  text-align: left;
}

input {
  width: 100%;
  border: 1px solid #666666;
  border-radius: 6px;
  color: #000000;
  font-size: 1.6rem;
  padding: 15px 16px;
}
input::-moz-placeholder {
  color: #666666;
  font-size: 1.6rem;
}
input::placeholder {
  color: #666666;
  font-size: 1.6rem;
}
input.ipt-placeholder2::-moz-placeholder {
  color: #666666;
}
input.ipt-placeholder2::placeholder {
  color: #666666;
}
input:-moz-read-only {
  background-color: #e4e4e4;
}
input:disabled, input:read-only {
  background-color: #e4e4e4;
}
input {
  /* Checkbox Base Styling - Hide the default checkbox */
}
input[type=checkbox] {
  /* 기본 브라우저 체크박스 숨기기 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  background-color: #fff;
}
input[type=checkbox]::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/checkG.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
input {
  /* Add the custom checkmark using a pseudo-element */
}
input[type=checkbox]:checked::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon/checkR.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

label {
  position: relative;
}
label.label-required::after {
  content: "*";
  position: absolute;
  right: -10px;
  top: 0;
}

.ipt-txt {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #666666;
  border-radius: 4px;
}
.ipt-txt:focus {
  border-color: #000000;
}
.ipt-txt:-moz-read-only {
  border-color: #666666;
}
.ipt-txt:read-only {
  border-color: #666666;
}
.ipt-txt::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.ipt-txt--s {
  height: 30px;
  line-height: 28px;
  font-size: 12px;
}
.ipt-txtBlack {
  background-color: #333;
  border: none;
  color: #ffffff;
}
.ipt-txtBlack::-moz-placeholder {
  color: #666666;
}
.ipt-txtBlack::placeholder {
  color: #666666;
}
.ipt-count {
  margin-top: 5px;
  text-align: right;
  font-size: 11px;
}
.ipt-wrap__item:not(:first-child) {
  margin-top: 15px;
}
.ipt-wrap__item label {
  width: 120px;
  text-align: left;
}
.ipt-wrap__box {
  display: flex;
  align-items: center;
}
.ipt-wrap__box .ipt-txt {
  width: 100%;
}
.ipt-wrapWbtn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ipt-wrapWbtn input {
  flex-grow: 1;
}
.ipt-wrapWbtn .btn {
  width: auto;
  font-size: 1.6rem;
  flex-shrink: 0;
  padding: 15px 20px;
}
.ipt-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ipt-confirm:after {
  content: "";
  width: 15px;
  height: 15px;
  background-position: 0 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.ipt-confirm--true:after {
  background-image: url("../images/resources/ico_pw_true.svg");
}
.ipt-confirm--false:after {
  background-image: url("../images/resources/ico_pw_false.svg");
}
.ipt-pw__wrap {
  position: relative;
}
.ipt-pw__wrap .pw-toggle {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 5;
}
.ipt--styleHide {
  background-color: #fff !important;
  border: none;
}

.checkbox {
  padding: 8px 0;
}
.checkbox__item {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.checkbox__item label,
.checkbox__item input {
  cursor: pointer;
  font-size: 13px;
  line-height: 18px;
  color: #666666;
  white-space: nowrap;
}

/* 라디오 아이템 커스텀 스타일 */
.radio-item {
  width: 30px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.radio-item label {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 2px solid transparent;
}

/* input radio 버튼 숨기기 */
input[type=radio] {
  display: none;
}
input[type=radio] + label .custom-radio {
  border-color: none;
  background-color: #ffffff;
}
input[type=radio] + label .custom-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #666666;
  border-radius: 50%;
}
input[type=radio]:checked + label .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* 커스텀 라디오 버튼 (외부 원) */
.custom-radio {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}

.select__wrap {
  position: relative;
}
.select__wrap .custom-arrow {
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
}
.select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #333;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 15px 16px;
}
.select-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.select__item {
  position: relative;
  display: inline-block;
  min-width: 8rem;
}
@media only screen and (max-width: 768px) {
  .select__item {
    min-width: 11rem;
  }
}
.select__item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 14px 28px 14px 14px;
  font-size: 1.2rem;
  font-weight: 400;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .select__item select {
    font-size: 1.4rem;
  }
}
.select__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background: url("../images/icon/arrow3.svg") no-repeat center/contain;
  pointer-events: none;
}
.select__item:first-child {
  width: 10rem;
}
@media only screen and (max-width: 768px) {
  .select__item:first-child {
    width: 16rem;
  }
}
.select__item:nth-child(2) {
  width: 12rem;
}
@media only screen and (max-width: 768px) {
  .select__item:nth-child(2) {
    width: 19rem;
  }
}
.select__item:not(:first-child) {
  margin-left: 0.8rem;
}

.textarea {
  width: 100%;
  background-color: #333;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 15px 16px;
}
@media only screen and (max-width: 768px) {
  .textarea {
    min-height: 180px;
  }
}

.file-upload-container {
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.file-upload-label {
  min-width: 100px;
  display: inline-block;
  padding: 12px 22px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.file-upload-input {
  display: none;
}

/* 업로드된 파일 이름 표시 스타일 */
.file-name {
  color: #ffffff;
  margin-left: 10px;
}

.dp-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dp-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dp-card__cnt {
  background: #ffffff;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  overflow: hidden;
}
.dp-card__cnt:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.dp-card__img {
  width: 100%;
  background: #eee;
  overflow: hidden;
  aspect-ratio: 285/174;
}
.dp-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.dp-card__text {
  padding: 3rem 2rem;
}
@media only screen and (max-width: 768px) {
  .dp-card__text {
    padding: 1.4rem 1rem;
  }
}
.dp-card__text h4 {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .dp-card__text h4 {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
}
.dp-card__text span {
  font-size: 1.8rem;
  color: #535D6C;
}
@media only screen and (max-width: 768px) {
  .dp-card__text span {
    font-size: 1.2rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  gap: 5rem;
}
@media only screen and (max-width: 768px) {
  .pagination {
    gap: 2.4rem;
    margin-top: 3rem;
  }
}

.page-numbers {
  display: flex;
  gap: 5rem;
}
@media only screen and (max-width: 768px) {
  .page-numbers {
    gap: 2.4rem;
  }
}

.page-numbers a,
.prev-btn,
.next-btn {
  text-decoration: none;
  color: #adb5bd;
  /* 비활성 색상 (회색) */
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* 마우스 호버 시 효과 */
.page-numbers a:hover,
.prev-btn:hover,
.next-btn:hover {
  color: #222222;
}

/* 현재 선택된 페이지 활성화 스타일 */
.page-numbers a.active {
  color: #222222;
  font-weight: 700;
  border-bottom: 2px solid #222222;
}

/* 화살표 아이콘 크기 조정 (이미지처럼 작게) */
.prev-btn,
.next-btn {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon/arrow-off.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.prev-btn.active,
.next-btn.active {
  background-image: url("../images/icon/arrow-on.svg");
}

.next-btn {
  transform: rotate(180deg);
}

.dp-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 700px;
}
@media only screen and (max-width: 768px) {
  .dp-hero {
    min-height: initial;
  }
}
.dp-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: visible !important;
}
@media only screen and (max-width: 768px) {
  .dp-hero__inner {
    flex-direction: column;
  }
}
.dp-hero__content {
  flex: 0 0 50%;
  z-index: 10;
  padding: 8vw 0;
}
@media only screen and (max-width: 768px) {
  .dp-hero__content {
    flex: 0 0 auto;
    width: 100%;
  }
}
.dp-hero__title {
  font-family: "pretendardL", Arial, sans-serif;
  font-size: clamp(32px, 6.6vw, 66px);
  font-weight: 100;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .dp-hero__title {
    line-height: 1.4;
  }
}
.dp-hero__title .gradient-text {
  background: linear-gradient(to right, #ff6d80, #9858cd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "pretendardB", Arial, sans-serif;
  font-size: clamp(32px, 6.6vw, 66px);
  font-weight: bold;
}
.dp-hero__desc {
  font-size: 2.8rem;
  color: #666666;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .dp-hero__desc {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .dp-hero__desc br {
    display: none;
  }
}
.dp-hero__stores {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .dp-hero__stores {
    gap: 10px;
  }
}
.dp-hero__img {
  flex: 0 0 50%;
  position: relative;
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .dp-hero__img {
    margin-left: 0;
  }
}
.dp-hero__img img {
  width: auto;
  max-width: none !important;
  height: 672px;
  min-width: 100vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}
@media only screen and (max-width: 768px) {
  .dp-hero__img img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 130%;
    max-width: 500px !important;
    height: auto;
    min-width: 0;
    margin: 0 auto;
  }
}

.dp-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 15px 24px;
}
@media only screen and (max-width: 768px) {
  .dp-store-btn {
    padding: 14px 16px;
  }
}
.dp-store-btn img,
.dp-store-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 4px;
}

.dp-why {
  background-color: #FB99A5;
  padding: 0 0 8rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .dp-why {
    padding: 0;
  }
}
.dp-why .dp-why__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dp-why .dp-why__header::before {
  content: "";
  width: 100%;
  height: 98%;
  background-image: radial-gradient(ellipse 73% 73% at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .dp-why .dp-why__header::before {
    width: calc(100% + 40px);
    background-image: radial-gradient(ellipse 74% 75% at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  }
}
.dp-why__bubbles {
  max-width: 842px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .dp-why__bubbles {
    max-width: initial;
    width: calc(100% + 40px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.dp-why__bubbles .whyImg-m {
  display: none;
}
@media only screen and (max-width: 768px) {
  .dp-why__bubbles .whyImg-pc {
    display: none;
  }
  .dp-why__bubbles .whyImg-m {
    display: block;
  }
}
.dp-why__cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .dp-why__cards {
    flex-direction: column;
    gap: 1.4rem;
  }
}
.dp-why .dp-card {
  background: #ffffff;
  border-radius: 50px;
  flex: 1;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .dp-why .dp-card {
    max-width: 100%;
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
    padding: 2rem;
  }
}
.dp-why .dp-card:last-child .dp-card__icon {
  background-color: #FFEEF0;
}
.dp-why .dp-card:last-child .dp-card__icon img {
  max-width: 110%;
  width: 96px;
  height: 96px;
  left: 55%;
}
.dp-why .dp-card__icon {
  width: 83px;
  height: 83px;
  background: #FB99A5;
  border-radius: 50%;
  position: relative;
  margin-bottom: 2.7rem;
}
@media only screen and (max-width: 768px) {
  .dp-why .dp-card__icon {
    width: 60px;
    height: 60px;
    margin-right: 0;
    margin-bottom: 1.4rem;
  }
}
.dp-why .dp-card__icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dp-why .dp-card p {
  font-family: "pretendardL", Arial, sans-serif;
  font-size: clamp(2rem, 1.9vw, 2.6rem);
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .dp-why .dp-card p {
    font-size: clamp(1.6rem, 1.9vw, 2rem);
  }
}

.dp-service {
  padding: 0 0 6rem;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .dp-service {
    padding: 0 0 4rem;
  }
}
.dp-service__cols {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .dp-service__cols {
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
  }
}
.dp-service-col {
  flex: 1;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
@media only screen and (max-width: 768px) {
  .dp-service-col {
    padding: 2rem;
  }
}
.dp-service-col h4 {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .dp-service-col h4 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .dp-service-col__img {
    width: calc(100% + 4rem);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.dp-service-list {
  width: 100%;
  background: #ffffff;
  margin-top: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .dp-service-list {
    margin-top: 2rem;
  }
}
.dp-service-list li {
  font-size: 2.4rem;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .dp-service-list li {
    font-size: 2rem;
  }
}
.dp-service-list li:last-child {
  margin-bottom: 0;
}
.dp-service-list li img {
  width: 2.4rem;
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .dp-service-list li img {
    margin-right: 4px;
  }
}
.dp-service__bottom-cards {
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .dp-service__bottom-cards {
    flex-direction: column;
    gap: 1.4rem;
  }
}
.dp-service .dp-bottom-card {
  display: flex;
  flex: 1;
  background: #fafafa;
  border-radius: 30px;
  padding: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .dp-service .dp-bottom-card {
    padding: 2rem;
  }
}
.dp-service .dp-bottom-card__icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-right: 1.8rem;
  padding: 1.1rem;
}
@media only screen and (max-width: 768px) {
  .dp-service .dp-bottom-card__icon {
    width: 48px;
    height: 48px;
    margin-right: 1.4rem;
    padding: 9px;
  }
}
.dp-service .dp-bottom-card h5 {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 2.4rem;
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 768px) {
  .dp-service .dp-bottom-card h5 {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}
.dp-service .dp-bottom-card p {
  margin: 0;
  color: #535d6c;
  font-size: 1.9rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .dp-service .dp-bottom-card p {
    font-size: 1.6rem;
  }
}

.dp-news {
  background-color: #f9f9f9;
  padding: 0 0 6rem;
}
@media only screen and (max-width: 768px) {
  .dp-news {
    padding: 0 0 4rem;
  }
}
.dp-news__scrollWrap {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .dp-news__scrollWrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .dp-news__scrollWrap {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px 20px;
    gap: 12px;
  }
  .dp-news__scrollWrap::-webkit-scrollbar {
    display: none;
  }
}
.dp-news__scrollCnt {
  width: clamp(186px, 100%, 280px);
  flex: 0 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .dp-news__scrollCnt {
    scroll-snap-align: start;
  }
}
.dp-news__more {
  text-align: center;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .dp-news__more {
    margin-top: 0;
  }
}

.dp-newsList {
  padding-bottom: 13.6rem;
}
@media only screen and (max-width: 768px) {
  .dp-newsList {
    padding-bottom: 7rem;
  }
}

.dp-newsCnt {
  max-width: 700px;
  margin: 0 auto;
  padding: 8.5rem 0 10rem;
}
@media only screen and (max-width: 768px) {
  .dp-newsCnt {
    max-width: initial;
    padding: 0 0 3rem;
  }
}
.dp-newsCnt__top {
  text-align: center;
}
.dp-newsCnt__title {
  font-family: "pretendardSB", Arial, sans-serif;
  font-size: 4.4rem;
  margin-bottom: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .dp-newsCnt__title {
    font-size: 2.6rem;
  }
}
.dp-newsCnt__date {
  font-size: 2.6rem;
  color: #535D6C;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dp-newsCnt__date {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.dp-newsCnt__main {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  margin-bottom: 4rem;
  padding: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .dp-newsCnt__main {
    padding: 3rem 0;
  }
}
.dp-newsCnt .dp-btn-back {
  background-color: #99A1AF;
}