@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 {
    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: #222;
    font-family: "pretendard", Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    word-break: keep-all;
}
@media only screen and (min-width: 768px) {
    div,
    p,
    span,
    input,
    a,
    li {
        font-size: 1.6rem;
    }
}

.alert {
    color: #f00;
    font-size: 1.4rem;
}

.txt-aCenter {
    text-align: center !important;
}
.txt-aLeft {
    text-align: left !important;
}
.txt-red {
    color: #f00 !important;
}
.txt-white {
    color: #ffffff !important;
}
.txt-black {
    color: #000 !important;
}
.txt-gray {
    color: #888 !important;
}
.txt-big1 {
    word-break: break-all;
    font-size: 3.6rem;
}
@media only screen and (min-width: 768px) {
    .txt-big1 {
        font-size: 3.6rem;
    }
}
.txt-big2 {
    word-break: break-all;
    font-size: 2rem;
}
@media only screen and (min-width: 768px) {
    .txt-big2 {
        font-size: 2.8rem;
    }
}
.txt-big3 {
    word-break: break-all;
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .txt-big3 {
        font-size: 2.6rem;
    }
}
.txt-main1 {
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .txt-main1 {
        font-size: 2rem;
    }
}
.txt-main2 {
    font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
    .txt-main2 {
        font-size: 1.8rem;
    }
}
.txt-main3 {
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    .txt-main3 {
        font-size: 1.6rem;
    }
}
.txt-small {
    font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
    .txt-small {
        font-size: 1.4rem;
    }
}
.txt-bold {
    font-family: "pretendardB", Arial, sans-serif;
}
.txt-Sbold {
    font-family: "pretendardSB", Arial, sans-serif;
    text-overflow: ellipsis;
    overflow-x: hidden;
}
.txt-light {
    font-family: "pretendardL", Arial, sans-serif;
}

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

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

/**
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: #000;
}

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: #888;
    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: flex;
    width: 100%;
    height: auto;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #131313;
    min-height: 100vh;
}

.outer__wrap {
    width: 100%;
    max-width: 1440px;
    flex-grow: 1;
    margin: 0 auto;
    padding: 0 10px;
}
@media only screen and (min-width: 1024px) {
    .outer__wrap {
        padding: 0 20px;
        height: auto;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    padding-right: 0;
}
header .logo {
    max-width: 156px;
    min-width: 90px;
    width: 15%;
}
@media only screen and (min-width: 1024px) {
    header {
        padding: 42px 0;
    }
}

.nav__wrap {
    display: none;
}
@media only screen and (min-width: 1024px) {
    .nav__wrap {
        display: flex;
        align-items: center;
    }
}

.navM__wrap {
    display: inline-block;
}
.navM__wrap button {
    box-sizing: initial;
    width: 45%;
    min-width: 24px;
    padding: 0 20px;
}
@media only screen and (min-width: 1024px) {
    .navM__wrap {
        display: none;
    }
}

nav {
    margin-right: 53px;
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
nav ul .dropdown-menu-item {
    position: relative;
}
nav ul .dropdown-menu-item:hover > a {
    color: #ffffff !important;
    font-family: "pretendardB", Arial, sans-serif !important;
    position: relative;
}
nav ul .dropdown-menu-item:hover > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav ul .dropdown-menu-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: transparent;
    z-index: 101;
}
nav ul a {
    color: #888;
    display: block;
    padding-bottom: 5px;
}
nav ul a.on {
    color: #ffffff;
    font-family: "pretendardB", Arial, sans-serif;
    position: relative;
}
nav ul a.on::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav ul .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: #ffffff;
    opacity: 0.9;
    padding: 0;
    margin-top: 0px;
    width: -moz-max-content;
    width: max-content;
}
nav ul .dropdown-content li {
    width: 100%;
    padding: 0;
}
nav ul .dropdown-content li a {
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px 20px;
    width: 12.7rem;
    white-space: nowrap;
    display: block;
    font-family: "pretendard", Arial, sans-serif;
}
nav ul .dropdown-content li a.on::after, nav ul .dropdown-content li a::after {
    content: none;
}
nav ul .dropdown-content li a:nth-child(2) {
    text-decoration: none;
}
nav ul .dropdown-content li a:hover {
    text-decoration: underline;
    font-family: "pretendardB", Arial, sans-serif;
    background-color: rgb(242.25, 242.25, 242.25);
    color: #000;
}
nav ul .dropdown-content2 {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: #ffffff;
    width: 22.4rem !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
nav ul .dropdown-content2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul .dropdown-content2 li {
    position: relative;
    width: 100%;
    text-align: center;
}
nav ul .dropdown-content2 li a {
    color: #000;
    font-size: 1.7rem;
    font-weight: 700;
    padding: 12px 20px;
    display: block;
    width: 100% !important;
    text-align: center;
    transition: all 0.2s;
}
nav ul .dropdown-content2 li a::after {
    content: none !important;
}
nav ul .dropdown-content2 li a:hover {
    background-color: #f8f8f8;
    text-decoration: underline;
}
nav ul .dropdown-content2 li .sub-depth-content {
    display: none;
    position: absolute;
    top: -10px;
    left: 100%;
    background-color: #ffffff;
    width: 22.4rem;
    min-height: calc(100% + 20px);
    padding: 10px 0;
    border-left: 1px solid #eee;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 10;
}
nav ul .dropdown-content2 li .sub-depth-content li a {
    color: #888 !important;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 10px 20px;
}
nav ul .dropdown-content2 li .sub-depth-content li a:hover {
    color: #000 !important;
    font-weight: 700;
}
nav ul .dropdown-content2 li:hover > .sub-depth-content {
    display: block;
}
@media only screen and (min-width: 1024px) {
    nav ul .dropdown-menu-item:hover .dropdown-content {
        display: block;
    }
    nav ul .dropdown-menu-item:hover > a.menu-aboutUs {
        color: #ffffff;
        font-family: "pretendardB", Arial, sans-serif;
        position: relative;
    }
    nav ul .dropdown-menu-item:hover > a.menu-aboutUs::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    nav ul .dropdown-menu-item.open .dropdown-content {
        display: block !important;
    }
}
@media only screen and (min-width: 1024px) {
    nav ul .dropdown-menu-item.open .dropdown-content {
        display: block !important;
    }
}

.nav__login {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.nav__login-icon {
    width: 40px;
    background-color: #888;
    border-radius: 100%;
    padding: 8px;
}
.nav__login .membership {
    font-family: "pretendardSB", Arial, sans-serif;
}
.nav__login .membership--gold {
    color: #ffd600;
}
.nav__login .membership--silver {
    color: #c0c0c0;
}
.nav__login .membership--bronze {
    color: #cd7f32;
}
.nav__login .txt-login {
    color: #ffffff;
}
.nav__login .user-name {
    color: #ffffff;
}
.nav__login .menu-myPage {
    color: #ffffff;
    font-size: 1.6rem;
}
.nav__login .dropdown-menu-item {
    position: relative;
}
.nav__login .dropdown-menu-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: transparent;
    z-index: 101;
}
.nav__login .dropdown-content {
    display: none;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    opacity: 0.9;
    text-align: center;
    top: 30px;
    padding: 0;
    margin-top: 0px;
    width: -moz-max-content;
    width: max-content;
}
.nav__login .dropdown-content li {
    width: 100%;
    padding: 0;
}
.nav__login .dropdown-content li a,
.nav__login .dropdown-content li button {
    color: #000;
    font-size: 1.6rem;
    padding: 10px 20px;
    width: 12.7rem;
    white-space: nowrap;
    display: block;
    font-family: "pretendard", Arial, sans-serif;
}
.nav__login .dropdown-content li a.on::after, .nav__login .dropdown-content li a::after,
.nav__login .dropdown-content li button.on::after,
.nav__login .dropdown-content li button::after {
    content: none;
}
.nav__login .dropdown-content li a:nth-child(2),
.nav__login .dropdown-content li button:nth-child(2) {
    text-decoration: none;
}
.nav__login .dropdown-content li a:hover,
.nav__login .dropdown-content li button:hover {
    text-decoration: underline;
    font-family: "pretendardB", Arial, sans-serif;
    background-color: rgb(242.25, 242.25, 242.25);
    color: #000;
}
.nav__login .dropdown-menu-item .dropdown-content {
    display: none !important;
}
.nav__login .dropdown-menu-item.open .dropdown-content {
    display: block !important;
}
@media only screen and (min-width: 1024px) {
    .nav__login .dropdown-menu-item:hover .dropdown-content {
        display: block !important;
    }
}

footer {
    height: 143px;
    background-color: #000;
    text-align: center;
    padding: 30px;
}
footer > img {
    width: 50%;
    max-width: 152px;
    margin: 0 auto 18px;
}
@media only screen and (min-width: 768px) {
    footer > img {
        width: 20%;
        max-width: 218px;
    }
}
footer p {
    font-size: 1rem;
    color: #333;
}
@media only screen and (min-width: 768px) {
    footer p {
        font-size: 1.4rem;
    }
}

.box {
    background-color: #222;
}
.box-contact {
    background-color: #276a3b !important;
}

.box-ani {
    opacity: 0;
    transition: all 0.8s ease-in;
    transition-delay: 0.2s;
}
.box-ani.ani-on {
    opacity: 1;
}

.subBox {
    position: relative;
}
.subBox:not(.subBox:last-child) {
    margin: 20px 0;
    padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .subBox:not(.subBox:last-child) {
        margin: 30px 0;
        padding-bottom: 30px;
    }
}
.subBox:not(.subBox:last-child)::before {
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    background-color: #444;
    position: absolute;
    left: 0;
    bottom: 0;
}
.subBox:first-child {
    margin-top: 0 !important;
}

.sub-container {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .sub-container .box {
        width: calc((100% - 1rem * (2 - 1)) / 2);
        margin-bottom: 1rem;
    }
    .sub-container .box:nth-child(2n) {
        margin-right: 0;
    }
    .sub-container .box:not(:nth-child(2n)) {
        margin-right: 1rem;
    }
}
@media (max-width: 767px) {
    .sub-container .box {
        width: calc((100% - 1rem * (1 - 1)) / 1);
        margin-bottom: 1rem;
    }
    .sub-container .box:nth-child(1n) {
        margin-right: 0;
    }
    .sub-container .box:not(:nth-child(1n)) {
        margin-right: 1rem;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .sub-container .box {
        width: calc((100% - 2.4rem * (2 - 1)) / 2);
        margin-bottom: 2.4rem;
    }
    .sub-container .box:nth-child(2n) {
        margin-right: 0;
    }
    .sub-container .box:not(:nth-child(2n)) {
        margin-right: 2.4rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
    .sub-container .box {
        width: calc((100% - 2.4rem * (1 - 1)) / 1);
        margin-bottom: 2.4rem;
    }
    .sub-container .box:nth-child(1n) {
        margin-right: 0;
    }
    .sub-container .box:not(:nth-child(1n)) {
        margin-right: 2.4rem;
    }
}
.sub-container .box {
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .sub-container .box {
        border-radius: 28px;
        padding: 40px;
    }
}
.sub-container .box h2,
.sub-container .box h4,
.sub-container .box p,
.sub-container .box div {
    color: #ffffff;
    line-height: 1.5;
}
.sub-container .box h2,
.sub-container .box h4 {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .sub-container .box h2,
    .sub-container .box h4 {
        margin-bottom: 40px;
    }
}

.tab {
    background-color: rgb(34, 34, 34);
    border-radius: 50px;
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 12px;
    text-align: center;
}
.tabs {
    justify-content: initial;
    width: 100%;
    margin-top: 16px;
}
@media only screen and (min-width: 768px) {
    .tabs {
        justify-content: space-between;
        margin-top: 28px;
    }
}
.tablong {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
}
.tablong::-webkit-scrollbar {
    display: none;
}
.tablong .tab {
    flex: 0 0 auto;
    width: auto;
    max-width: 120px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    line-height: 1.2;
    min-height: 44px;
}
@media only screen and (min-width: 768px) {
    .tablong .tab {
        max-width: none;
        flex: 0 0 auto;
    }
}
.tab:not(.tab:last-child) {
    margin-right: 8px;
}
@media only screen and (min-width: 768px) {
    .tab {
        font-size: clamp(10px, 1.2vw, 1.6rem);
    }
}
.tab.active {
    background-color: #276a3b;
    border-radius: 50px;
}
.tab-content {
    display: none;
    color: #ffffff;
}
.tab-content.active {
    display: block;
}
.tab-content li {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.tab-content li:not(.tab-content li:last-child) {
    margin-bottom: 20px;
}
.tab-content li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.breadcrumb {
    display: flex;
    gap: 0 26px;
    margin: 0 0 16px 15px;
}
@media only screen and (min-width: 768px) {
    .breadcrumb {
        margin: 0 0 36px 15px;
    }
}
.breadcrumb li {
    color: #ffffff;
    font-family: "pretendardL", Arial, sans-serif;
    font-size: 1.4rem;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .breadcrumb li {
        font-size: 2rem;
    }
}
.breadcrumb li:not(.breadcrumb li:last-child)::after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    background-image: url("../images/icon/arrow.svg");
    background-size: 100% auto;
    position: absolute;
    right: -16px;
    top: 3px;
}
@media only screen and (min-width: 768px) {
    .breadcrumb li:not(.breadcrumb li:last-child)::after {
        top: 8px;
    }
}
.breadcrumb li.active {
    font-family: "pretendardB", Arial, sans-serif;
}

.loading {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 45%;
}
.loading img {
    display: inline-block;
    width: 40px;
    margin-bottom: 10px;
}
.loading p {
    font-size: 1.6rem;
}

.accordion__box {
    cursor: pointer;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .accordion__box {
        margin-bottom: 28px;
    }
}
.accordion__box.active .arrow-icon {
    transform: translateY(-50%) rotate(-180deg);
}
.accordion__box.active .accordion__cont {
    max-height: 2000px;
}
.accordion__box .arrow-icon {
    display: block;
    width: 28px;
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
    .accordion__box .arrow-icon {
        width: 32px;
    }
}
.accordion__cont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

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

.btn {
    min-width: 100px;
    width: 100%;
    background-color: #888;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 16px;
    text-align: center;
}
.btn:disabled {
    background-color: #888 !important;
    color: #ffffff;
}
.btn__dbl {
    display: flex;
    gap: 5px;
}
.btn__dbl .btn {
    padding: 18px;
}
.btn-login, .btn--active {
    background-color: #e94929;
    color: #ffffff;
    font-family: "pretendardSB", Arial, sans-serif;
}
.btn-iconFront > img {
    width: 2.8rem;
}
.btn-iconFront span {
    font-family: "pretendardSB", Arial, sans-serif;
    line-height: 1.7;
    margin-left: 5px;
}
.btn-kakao {
    background-color: #fbdc12;
}
.btn-naver {
    background-color: #03cf5d;
}
.btn-google {
    background-color: #dedede;
}
.btn-black {
    background-color: #333;
    font-weight: 500;
    padding: 16px 35px;
}
.btn-green {
    background-color: #37b558;
}
.btn__wrapC {
    text-align: center;
}
.btn-link {
    width: auto;
    background-color: transparent;
    color: #000;
    font-size: 1.6rem;
    text-decoration: underline;
}
.btn-del {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #222;
    border-radius: 100%;
}
.btn-del img {
    width: 18px;
}
.btn-more {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50px;
    color: #000;
    padding: 6px 12px;
}
@media only screen and (min-width: 768px) {
    .btn-more {
        padding: 0.5vw 0.9vw;
    }
}
@media only screen and (min-width: 1440px) {
    .btn-more {
        padding: 8px 16px;
    }
}
.btn-moreW {
    border-color: #ffffff;
    color: #ffffff;
}
.btn-center {
    display: block;
    margin: 20px auto 0;
}
@media only screen and (min-width: 768px) {
    .btn-center {
        margin: 40px auto 0;
    }
}

.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 #d9d9d9;
    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;
    color: #e94929;
}
.form__label__txt {
    margin-top: 2px;
    font-size: 10px;
}
.form__label--hide {
    display: none;
}
.form__label .alert {
    margin-top: 5px;
}
@media only screen and (min-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: blue;
    text-align: left;
}
.form__div, .form__p {
    padding: 10px;
}
.form__txt {
    padding: 8px 0;
}
.form__alert {
    margin-top: 8px;
    font-size: 12px;
    color: blue;
    text-align: left;
}

input {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    color: #000;
    font-size: 1.6rem;
    padding: 15px 16px;
    /* Checkbox Base Styling - Hide the default checkbox */
    /* Add the custom checkmark using a pseudo-element */
}
input::-moz-placeholder {
    color: #d9d9d9;
    font-size: 1.6rem;
}
input::placeholder {
    color: #d9d9d9;
    font-size: 1.6rem;
}
input.ipt-placeholder2::-moz-placeholder {
    color: #888;
}
input.ipt-placeholder2::placeholder {
    color: #888;
}
input:-moz-read-only {
    background-color: #e4e4e4;
}
input:disabled, input:read-only {
    background-color: #e4e4e4;
}
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[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: "*";
    color: #f00;
    position: absolute;
    right: -10px;
    top: 0;
}

.ipt-txt {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}
.ipt-txt:focus {
    border-color: #000;
}
.ipt-txt:-moz-read-only {
    border-color: #d9d9d9;
}
.ipt-txt:read-only {
    border-color: #d9d9d9;
}
.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: #888;
}
.ipt-txtBlack::placeholder {
    color: #888;
}
.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;
}
.ipt--error {
    border-color: #e94929;
}

.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: #d9d9d9;
    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: #f0f0f0;
    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;
    background-color: #37b558;
    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 {
    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 {
    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-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.select__item {
    position: relative;
    display: inline-block;
    min-width: 8rem;
}
@media only screen and (min-width: 768px) {
    .select__item {
        min-width: 11rem;
    }
}
.select__item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #000;
    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 (min-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 (min-width: 768px) {
    .select__item:first-child {
        width: 16rem;
    }
}
.select__item:nth-child(2) {
    width: 12rem;
}
@media only screen and (min-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 (min-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;
}

.pop {
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    overflow: hidden;
}
.pop__inner {
    width: 100%;
    max-width: 350px;
    max-height: 90dvh;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 20px;
    padding-top: 30px;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
    .pop__inner {
        max-width: 480px;
        padding: 40px;
    }
}
.pop .pop__close {
    width: 20px;
    box-sizing: initial;
    position: absolute;
    right: 0px;
    top: 15px;
    padding: 20px;
    z-index: 10;
}
@media only screen and (min-width: 768px) {
    .pop .pop__close {
        width: 24px;
        right: 15px;
        top: 25px;
    }
}
.pop-tCenter {
    text-align: center;
}
.pop__top {
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .pop__top {
        margin-bottom: 40px;
    }
}
.pop__top > img {
    max-width: 16.7rem;
    margin: 10px auto 20px;
}
.pop h3 + p.w-auto {
    color: #888;
    line-height: 1.5;
}
.pop h4 {
    margin-bottom: 8px;
}
.pop__cnt-title {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}
.pop__cnt-title h4 {
    margin-bottom: 0;
}
.pop__cnt-title .pop__cnt-discR {
    color: #f00;
    font-size: 1.4rem;
    margin-left: 8px;
}
.pop__cnt > p {
    font-size: 1.8rem;
}
.pop__cnt + .pop__btn {
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .pop__cnt + .pop__btn {
        margin-top: 40px;
    }
}
.pop .form__label.d-flexBtw {
    display: block;
}
@media only screen and (min-width: 768px) {
    .pop .form__label.d-flexBtw {
        display: flex;
    }
}
.pop .tab {
    width: 50%;
    color: #888;
    padding: 15px;
    text-align: center;
    font-size: 1.4rem;
}
.pop .tabs {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0px;
}
@media only screen and (min-width: 768px) {
    .pop .tab {
        font-size: 1.6rem;
    }
}
.pop .tab.active {
    background-color: #37b558;
    border-radius: 0;
    color: #ffffff;
}
@media only screen and (min-width: 1024px) {
    .pop-menuM {
        display: none !important;
    }
}
.pop-menuM .pop__inner {
    width: 80%;
    max-width: 420px;
    min-width: 290px;
    position: absolute;
    top: 0;
    left: initial;
    right: 0;
    transform: initial;
    background-color: #ffffff;
    border-radius: 0 0 0 16px;
    padding: 30px;
    padding-right: 20px;
    padding-bottom: 36px;
}
.pop-menuM .user-name {
    color: #000;
}
.pop-menuM .pop__close {
    box-sizing: initial;
    width: 16px;
    margin-left: auto;
    padding: 20px;
    position: absolute;
    top: 25px;
    right: 10px;
}
.pop-menuM .nav__login .txt-login {
    color: #000;
}
.pop-menuM .memuM__cnt {
    margin-top: 30px;
}
.pop-menuM .memuM__cnt ul .dropdown-menu-item {
    position: relative;
}
.pop-menuM .memuM__cnt ul .dropdown-menu-item .dropdown-content {
    display: none;
    list-style: none;
    margin-top: 10px;
    padding: 0;
    padding-left: 20px;
}
.pop-menuM .memuM__cnt ul .dropdown-menu-item .dropdown-content li {
    margin-bottom: 0 !important;
}
.pop-menuM .memuM__cnt ul .dropdown-menu-item .dropdown-content li a {
    font-size: 1.6rem;
    color: #888;
    font-family: "pretendard", Arial, sans-serif;
    font-weight: 400;
    padding: 5px 0;
    display: block;
}
.pop-menuM .memuM__cnt ul .dropdown-menu-item .dropdown-content li a.on::after {
    content: none;
}
.pop-menuM .memuM__cnt ul li:not(.pop-menuM .memuM__cnt ul li:last-child) {
    margin-bottom: 24px;
}
.pop-menuM .memuM__cnt ul li a,
.pop-menuM .memuM__cnt ul li button {
    display: inline-block;
    font-size: 1.8rem;
}
.pop-menuM .memuM__cnt ul li a.on,
.pop-menuM .memuM__cnt ul li button.on {
    font-family: "pretendardB", Arial, sans-serif;
    position: relative;
}
.pop-menuM .memuM__cnt ul li a.on::after,
.pop-menuM .memuM__cnt ul li button.on::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
}
.pop-menuM .memuM__cnt ul li hr {
    border-top: 1px solid #d9d9d9;
}
.pop-menuM .memuM__cnt ul li.has-sub > a {
    position: relative;
}
.pop-menuM .memuM__cnt ul li.has-sub.active > a {
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-underline-offset: 5px;
}
.pop-menuM .memuM__cnt ul li.has-sub.active > .sub-depth-content {
    display: block !important;
}
.pop-menuM .memuM__cnt ul li .sub-depth-content {
    display: none;
    padding-left: 15px;
}
.pop-menuM .memuM__cnt ul li .sub-depth-content li {
    border-bottom: 0;
}
.pop-menuM .memuM__cnt ul li .sub-depth-content li a {
    font-weight: 400 !important;
    color: #a4a4a4 !important;
}
.pop-menuM .memuM__cnt ul li .sub-depth-content li.has-sub.active > .sub-depth-content.depth3 {
    display: block !important;
}
.pop-menuM .memuM__cnt .dropdown-menu-item.open .dropdown-content {
    display: block;
}
.pop-login .login-option button {
    color: #888;
}
.pop-login .btn-find {
    position: relative;
    padding: 0 10px;
}
.pop-login .btn-find:first-of-type::after {
    content: "|";
    display: block;
    position: absolute;
    top: 0;
    right: -2px;
}
.pop-login .btn__wrap .btn:not(.pop-login .btn__wrap .btn:last-child) {
    margin-bottom: 12px;
}
.pop-login .pop__close {
    top: 20px;
}
@media only screen and (min-width: 768px) {
    .pop-login .pop__close {
        top: 28px;
    }
}
.pop .process__wrap {
    height: 6px;
    background-color: #d9d9d9;
    margin-top: 40px;
    position: relative;
}
.pop .precess__bar {
    width: 33.33%;
    height: 100%;
    background-color: #e94929;
    position: absolute;
    left: 0;
    top: 0;
}
.pop .address-form > div:not(:last-of-type) {
    margin-bottom: 10px;
}
.pop .addCar__wrap {
    background-color: #f0f0f0;
    border-radius: 6px;
    padding: 20px;
}
.pop .addCar__wrap .btn-addCar__form {
    margin-top: 30px;
    margin-left: auto;
}
.pop .addCar__wrap .btn-addCar__form img {
    width: 18px;
}
.pop .addCar__wrap .btn-addCar__form p {
    color: #ffffff;
    margin-left: 5px;
}
.pop .addedCar__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 6px;
    padding: 14px;
}
.pop .addedCar__wrap:not(.pop .addedCar__wrap:last-child) {
    margin-bottom: 10px;
}
.pop .addedCar__wrap > p {
    width: calc(100% - 50px);
    line-height: 1.5;
}
.pop .addedCar__wrap2 {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 6px;
    padding: 14px;
}
.pop .addedCar__wrap2:not(.pop .addedCar__wrap2:last-child) {
    margin-bottom: 10px;
}
.pop .addedCar__wrap2 p {
    width: calc(100% - 50px);
    line-height: 1.5;
    margin-right: 15px;
}
.pop .addedCar__wrap2 .mainCar__mark {
    display: none;
}
.pop .addedCar__wrap2.mainCar {
    position: relative;
}
.pop .addedCar__wrap2.mainCar .mainCar__mark {
    display: inline-block;
    background-color: #e94929;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    padding: 6px;
}
.pop .addedCar__wrap2.mainCar p {
    width: 100%;
    margin-right: 0;
}
.pop .addedCar__wrap2.mainCar .btn-del {
    display: none;
}
.pop-registration .terms__cnt {
    margin: 20px auto 5rem;
}
@media only screen and (min-width: 768px) {
    .pop-registration .terms__cnt {
        margin: 20px auto 17.8rem;
    }
}
.pop-registration .main-agree-label {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    font-family: "pretendardSB", Arial, sans-serif;
    margin-bottom: 20px;
    padding: 16px;
}
.pop-registration .main-agree-label input[type=checkbox] {
    width: 26px;
    height: 26px;
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    margin-right: 13px;
    padding: 10px;
}
.pop-registration .terms__sub {
    padding: 0 14px;
    font-size: 1.4rem;
}
.pop-registration .terms__sub .d-flexBtw {
    margin-bottom: 10px;
}
.pop-registration .view-link {
    color: #888;
    font-size: 1.4rem;
    margin-left: auto;
    text-decoration: underline;
}
.pop-registration .marketing-options {
    color: #888;
    font-size: 1.4rem;
    margin-left: 25px;
}
.pop-registration .marketing-sub-label {
    display: inline-flex;
    /* 체크박스와 텍스트를 한 줄에 나열 */
    align-items: center;
    margin-right: 15px;
    /* 각 옵션(문자, 이메일) 간 간격 */
    cursor: pointer;
}
.pop-registration .marketing-sub-label input[type=checkbox] {
    margin-right: 5px;
}
.pop-registration2 .precess__bar, .pop-registration2-2 .precess__bar, .pop-registration2-3 .precess__bar {
    width: 66.66%;
}
.pop-registration2-3 .pop__btn {
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .pop-registration2-3 .pop__btn {
        margin-top: 30px;
    }
}
.pop-registration__done .precess__bar {
    width: 100%;
}
.pop-type3__main {
    background-color: #f0f0f0;
    border-radius: 6px;
    text-align: center;
    padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
    .pop-type3__main {
        padding: 30px;
    }
}
.pop-type3__main > img {
    width: 6.2rem;
    margin-bottom: 16px;
}
.pop-type3__main h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
@media only screen and (min-width: 768px) {
    .pop-type3__main h4 {
        font-size: 2rem;
    }
}
.pop-type3__main h4 span {
    font-family: "pretendardSB", Arial, sans-serif;
    font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
    .pop-type3__main h4 span {
        font-size: 2rem;
    }
}
.pop-type3__main p {
    color: #888;
    line-height: 1.5;
}
.pop-type3__main-cnt {
    background-color: #ffffff;
    border-radius: 6px;
    margin-top: 25px;
    padding: 16px;
}
@media only screen and (min-width: 768px) {
    .pop-type3__main-cnt {
        padding: 20px;
    }
}
.pop-email .mobile-br {
    display: block;
}
@media only screen and (min-width: 768px) {
    .pop-email .mobile-br {
        display: none;
    }
}
.pop-email .ipt-wrapWbtn .btn {
    min-width: 140px;
}
.pop-emailInfo .pop-type3__main {
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .pop-emailInfo .pop-type3__main {
        padding: 30px;
    }
}
.pop-emailInfo h4,
.pop-emailInfo span {
    font-family: "pretendardSB", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}
@media only screen and (min-width: 768px) {
    .pop-emailInfo h4,
    .pop-emailInfo span {
        font-size: 2rem;
    }
}
.pop-emailInfo .pop-type3__main-cnt {
    word-break: break-all;
}
.pop-pwDone__phone .pop-type3__main-cnt > div:not(.pop-pwDone__phone .pop-type3__main-cnt > div:last-child) {
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .pop-pwDone__phone .pop-type3__main-cnt > div:not(.pop-pwDone__phone .pop-type3__main-cnt > div:last-child) {
        margin-bottom: 20px;
    }
}
.pop-pwDone__phone .pop-type3__main-cnt span {
    display: inline-block;
    width: calc(100% - 80px);
    margin-left: 20px;
}
.pop-pwDone__email h4, .pop-emailInfoSend h4 {
    font-size: 1.9rem;
}
.pop-pwDone__email .btn__wrap .btn:not(.pop-pwDone__email .btn__wrap .btn:last-child, .pop-emailInfoSend .btn__wrap .btn:last-child), .pop-emailInfoSend .btn__wrap .btn:not(.pop-pwDone__email .btn__wrap .btn:last-child, .pop-emailInfoSend .btn__wrap .btn:last-child) {
    margin-bottom: 12px;
}
.pop-editMy .myInfo__cnt:not(.pop-editMy .myInfo__cnt:last-child) {
    margin-bottom: 25px;
}
.pop-editMy .myInfo__cnt > p,
.pop-editMy .myInfo__cnt button {
    font-size: 1.6rem;
}
.pop-editMy .myInfo__title {
    min-width: 120px;
}
.pop-editMy .btn-editPW {
    width: auto;
    font-size: 1.6rem;
}
.pop-delAccount h4 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}
.pop-delAccount h4 span {
    font-family: "pretendardB", Arial, sans-serif;
    font-size: 1.8rem;
}
.pop-swiper {
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.75);
    position: fixed;
    left: 0;
    top: 0;
}
.pop-swiper .pop__colse {
    width: 24px;
    height: 24px;
    box-sizing: initial;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 20px;
    z-index: 999;
}
@media only screen and (min-width: 768px) {
    .pop-swiper .pop__colse {
        width: 20px;
        height: 20px;
    }
}
.pop-swiper__inner {
    width: 100%;
    height: 100%;
    max-width: 92%;
    max-height: 90vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.pop-swiper .swiper-container,
.pop-swiper .swiper-wraper,
.pop-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}
.pop-swiper .swiper-container img,
.pop-swiper .swiper-wraper img,
.pop-swiper .swiper-slide img {
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pop-swiper .swiper-button-next,
.pop-swiper .swiper-button-prev {
    color: #ffffff;
}

.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper .swiper-pagination {
    bottom: 32px !important;
}
.swiper .swiper-pagination-bullet {
    width: 10%;
    max-width: 78px;
    height: 6px;
    background-color: #d9d9d9;
    border-radius: 0;
    margin: 0 8px !important;
    opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
    background-color: #e94929;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper__thumb {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}
.mySwiper__thumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
}
.mySwiper__thumb .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2.5rem !important;
}

.gallery-top .swiper-slide {
    cursor: pointer;
}
.gallery-top .btn__mag {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: none;
    z-index: 2;
}

.ckEditor__wrap ul li {
    list-style: disc;
    margin-left: 20px;
}
.ckEditor__wrap ol li {
    list-style: decimal;
    margin-left: 20px;
}
.ckEditor__wrap div,
.ckEditor__wrap p,
.ckEditor__wrap a,
.ckEditor__wrap li,
.ckEditor__wrap span {
    color: #ffffff;
}
.ckEditor__wrap2 {
    padding-bottom: 20px;
}
.ckEditor__wrap2::after {
    content: "";
    width: 100%;
    display: block;
    height: 1px;
    background-color: #444;
    position: absolute;
    left: 0;
    bottom: 0;
}
.ckEditor__wrap2 ul {
    margin-bottom: 15px;
}
.ckEditor__wrap2 ul li {
    list-style: disc;
    margin-left: 20px;
}
.ckEditor__wrap2 ol li {
    list-style: decimal;
    margin-left: 20px;
}
.ckEditor__wrap2 div,
.ckEditor__wrap2 p,
.ckEditor__wrap2 a,
.ckEditor__wrap2 li,
.ckEditor__wrap2 span {
    color: #ffffff;
}
.ckEditor__wrap2 .ck-list-marker-color:not(:first-child) {
    margin-top: 5px;
}

.main .container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
    .main .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        gap: 2.4rem;
    }
}
.main .container .box {
    min-height: 242px;
    background-color: #222;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .main .container .box {
        padding: clamp(10px, 1.8vw, 30px);
    }
}
.main .container .box-title {
    font-size: 2.2rem;
}
.main .container .box-titleB {
    font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
    .main .container .box-titleB {
        font-size: clamp(10px, 2vw, 36px);
    }
}
.main .container .box-subTxt {
    font-size: 1.6rem;
}
.main .container .box p {
    color: #ffffff;
}
.main .container .box1 {
    grid-area: 1/1/3/3;
    padding: 0;
    position: relative;
}
.main .container .box2 {
    grid-area: 1/3/2/4;
    background-color: #27693c !important;
    background-image: url(../images/main/main_boxR1.png);
    background-position: right -35px bottom 15px;
    background-repeat: no-repeat;
    background-size: 90% auto;
}
.main .container .box3 {
    grid-area: 2/3/3/4;
    background-image: url(../images/main/main_boxR2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main .container .box3 .box-titleB {
    margin-top: 1.7vw;
    /* 데스크톱 화면 (1440px 이상) */
}
@media only screen and (min-width: 1440px) {
    .main .container .box3 .box-titleB {
        margin-top: 30px;
    }
}
.main .container .box4 {
    grid-area: 3/1/5/2;
    padding: 25px;
}
@media only screen and (min-width: 768px) {
    .main .container .box4 {
        height: auto; /* Reset height for mobile layout */
        padding: clamp(10px, 1.5rem, 30px);
    }
}
.main .container .box4 .tab {
    margin-right: 0;
}
.main .container .box4 .tabs {
    justify-content: initial;
    flex-wrap: wrap;
}
@media only screen and (min-width: 1440px) {
    .main .container .box4 .tabs {
        justify-content: space-between;
    }
}
@media only screen and (min-width: 768px) {
    .main .container .box4 .tab {
        margin-right: 8px;
    }
}
.main .container .box4 .tab[data-tab=special] {
    font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
    .main .container .box4 .tab[data-tab=special] {
        font-size: clamp(10px, 1.2vw, 1.4rem);
    }
}
.main .container .box4 .tab-content li,
.main .container .box4 .tab-content a {
    width: 100%;
    max-height: 178px;
}
@media only screen and (min-width: 768px) {
    .main .container .box4 .tab-content li,
    .main .container .box4 .tab-content a {
        max-height: initial;
    }
}
.main .container .box4 .txt__shade p {
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .main .container .box4 .txt__shade p {
        font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    }
}
.main .container .box5 {
    grid-area: 3/2/4/3;
}
.main .container .box5-img {
    width: 15%;
    max-width: 22px;
    margin: 1.7vw auto 0;
}
@media only screen and (min-width: 768px) {
    .main .container .box5-img {
        margin: 30px auto 0;
    }
}
.main .container .box6 {
    grid-area: 3/3/4/4;
}
.main .container .box7 {
    grid-area: 4/2/5/4;
}
.main .container .boxType--2 {
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    justify-content: center;
    padding: 10px 30px;
}
@media only screen and (min-width: 768px) {
    .main .container .box2, .main .container .box3, .main .container .box5, .main .container .box6, .main .container .box7 {
        height: 25.5vw;
    }
}
@media only screen and (min-width: 1024px) {
    .main .container .box2, .main .container .box3, .main .container .box5, .main .container .box6, .main .container .box7 {
        height: 24.8vw;
    }
}
@media only screen and (min-width: 1248px) {
    .main .container .box2, .main .container .box3, .main .container .box5, .main .container .box6, .main .container .box7 {
        height: 22.6vw;
    }
}
@media only screen and (min-width: 1440px) {
    .main .container .box2, .main .container .box3, .main .container .box5, .main .container .box6, .main .container .box7 {
        height: auto;
    }
}
.main .container .btn-more {
    margin-top: 2rem;
    /* 데스크톱 화면 (1440px 이상) */
}
@media only screen and (min-width: 1440px) {
    .main .container .btn-more {
        font-size: clamp(10px, 1vw, 16px);
        margin-top: clamp(2rem, 1.7vw, 3rem);
    }
}
.main .container .list {
    width: 100%;
    border-bottom: 1px solid #444444;
    padding: 14px 10px;
}
.main .container .list__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .main .container .list__wrap {
        margin-top: 30px;
    }
}
.main .container .list:first-child {
    border-top: 1px solid #444444;
}
.main .container .list p {
    font-size: clamp(14px, 1.3vw, 1.8rem);
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.main .container .list__date {
    color: #888;
    font-size: 1.4rem;
}
.main .container .txt__shade {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 60%);
    padding: 35px 16px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.main .container .story-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
}
@media only screen and (min-width: 768px) {
    .main .container .story-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 20px;
    }
}
.main .container .story-list li {
    max-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.main .container .story-list__title {
    font-family: "pretendardB", Arial, sans-serif;
    font-size: 1.2rem;
    text-decoration: underline;
    margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
    .main .container .story-list__title {
        font-size: clamp(12px, 1.1vw, 16px);
    }
}
.main .container .story-list__txt {
    font-size: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
@media only screen and (min-width: 768px) {
    .main .container .story-list__txt {
        font-size: clamp(10px, 1vw, 14px);
    }
}
.main .container .story-list__box {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.main .container .story-list__box p {
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.main .container .story-list .txt__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 60%);
}
.main .our-partners {
    text-align: center;
}
.main .our-partners h4 {
    display: inline-block;
    color: #888;
    font-family: "pretendardL", Arial, sans-serif;
    font-size: 1.4rem;
    margin: 30px 0 0px;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .main .our-partners h4 {
        font-size: 2rem;
        margin: 40px 0 30px;
    }
}
.main .our-partners h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #888;
}
.main .partner {
    margin-bottom: 24px;
}
.main .partner__wrap {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 25px;
    align-items: center;
}
@media (min-width: 768px) {
    .main .partner__wrap .box {
        width: calc((100% - 30px * (6 - 1)) / 6);
        margin-bottom: 30px;
    }
    .main .partner__wrap .box:nth-child(6n) {
        margin-right: 0;
    }
    .main .partner__wrap .box:not(:nth-child(6n)) {
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .main .partner__wrap .box {
        width: calc((100% - 30px * (3 - 1)) / 3);
        margin-bottom: 30px;
    }
    .main .partner__wrap .box:nth-child(3n) {
        margin-right: 0;
    }
    .main .partner__wrap .box:not(:nth-child(3n)) {
        margin-right: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .main .partner__wrap {
        justify-content: center;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .main .partner__wrap .box {
        width: calc((100% - 58px * (6 - 1)) / 6);
        margin-bottom: 58px;
    }
    .main .partner__wrap .box:nth-child(6n) {
        margin-right: 0;
    }
    .main .partner__wrap .box:not(:nth-child(6n)) {
        margin-right: 58px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
    .main .partner__wrap .box {
        width: calc((100% - 58px * (3 - 1)) / 3);
        margin-bottom: 58px;
    }
    .main .partner__wrap .box:nth-child(3n) {
        margin-right: 0;
    }
    .main .partner__wrap .box:not(:nth-child(3n)) {
        margin-right: 58px;
    }
}
.main .partner__wrap .box {
    background-color: transparent;
}

@media only screen and (min-width: 768px) {
    .aboutUs {
        margin-bottom: 220px;
    }
}
.aboutUs .box1 {
    aspect-ratio: 340/240;
    padding: 0;
}
.aboutUs .box2 .txt-light.txt-gray {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .aboutUs .box2 .txt-light.txt-gray {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) {
    .contactUs {
        margin-bottom: 220px;
    }
}
.contactUs .box1 .txt-light.txt-big2 {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .contactUs .box1 .txt-light.txt-big2 {
        margin-bottom: 22px;
    }
}
.contactUs .box1 .txt-light.txt-gray {
    margin-top: 10px;
}
@media only screen and (min-width: 768px) {
    .contactUs .box1 .txt-light.txt-gray {
        margin-top: 12px;
    }
}
.contactUs .box1 .col2 {
    display: flex;
}
.contactUs .box1 .col2:not(.contactUs .box1 .col2:last-child) p {
    margin-bottom: 16px;
}
.contactUs .box1 .col2 .label {
    width: 70px;
    margin-right: 10px;
}
@media only screen and (min-width: 768px) {
    .contactUs .box1 .col2 .label {
        margin-right: 30px;
    }
}
.contactUs .box1 .col2 .value {
    width: calc(100% - 80px);
}
.contactUs .box1 .map {
    height: 365px;
    border-radius: 26px;
    margin-top: 25px;
    overflow: hidden;
}
.contactUs .box .subBox .agree__wrap {
    align-items: flex-start;
}
.contactUs .box .subBox .agree_label {
    align-items: flex-start;
}
.contactUs .box .subBox .agree_label input {
    width: 16px;
    margin-right: 10px;
}
.contactUs .box .subBox .agree_label p {
    width: calc(100% - 40px);
}
.contactUs .box .subBox .view-agree {
    text-decoration: underline;
}
.contactUs .box .subBox .checkbox__wrap input {
    background-color: transparent;
}
.contactUs .box .subBox .btn-send {
    min-width: 170px;
    background-color: #276a3b;
    margin-top: 20px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .contactUs .box .subBox .btn-send {
        min-width: 200px;
    }
}
.contactUs .reservation__wrap {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.6rem;
}
.contactUs .reservation__wrap .txt-light.txt-main3.mr-20 {
    flex-shrink: 0;
    margin-right: 1.8rem;
    width: auto;
}
@media only screen and (min-width: 768px) {
    .contactUs .reservation__wrap .txt-light.txt-main3.mr-20 {
        margin-right: 3rem;
    }
}
.contactUs .reservation__wrap a {
    text-align: center;
    position: relative;
    flex-shrink: 0;
    margin-right: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .contactUs .reservation__wrap a {
        margin-right: 3rem;
    }
}
.contactUs .reservation__wrap a:last-child {
    margin-right: 0;
}
.contactUs .reservation__wrap a > img {
    width: 34px;
    height: 34px;
    background-color: #333;
    border-radius: 16px;
    box-sizing: initial;
    padding: 18px;
}
.contactUs .reservation__wrap a > p {
    margin-top: 10px;
}
.contactUs .form__item {
    display: block;
}
@media only screen and (min-width: 768px) {
    .contactUs .form__item {
        display: flex;
    }
}
.contactUs .form__item:not(:first-of-type) {
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .contactUs .form__item:not(:first-of-type) {
        margin-top: 24px;
    }
}
.contactUs .form__label {
    width: 100px;
}
@media only screen and (min-width: 768px) {
    .contactUs .form__label {
        margin-right: 40px;
    }
}

.service {
    display: block;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .service {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 60px;
    }
}
.service .sub-container--2 {
    display: block;
}
@media only screen and (min-width: 768px) {
    .service .sub-container--2 {
        width: 50%;
    }
}
.service .sub-container--2 p,
.service .sub-container--2 div,
.service .sub-container--2 span {
    color: #ffffff;
    line-height: 1.5;
}
.service .box {
    border-radius: 16px;
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .service .box {
        border-radius: 28px;
        padding: 40px;
    }
}
.service .accordion__title {
    position: relative;
}
.service .accordion__title > p {
    width: calc(100% - 40px);
}
@media only screen and (min-width: 768px) {
    .service .accordion__title .br-mobile {
        display: none;
    }
}
.service .accordion__cont > img {
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .service .accordion__cont > img {
        margin-top: 40px;
    }
}
.service .accordion__cont .subBox:first-of-type {
    margin-top: 20px !important;
}
@media only screen and (min-width: 768px) {
    .service .accordion__cont .subBox:first-of-type {
        margin-top: 40px !important;
    }
}
.service .procedure__wrap,
.service .reservation__wrap {
    display: flex;
    flex-wrap: wrap;
}
.service .procedure__wrap li,
.service .reservation__wrap li {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}
.service .procedure__wrap li:not(.service .procedure__wrap li:last-child,
.service .reservation__wrap li:last-child),
.service .reservation__wrap li:not(.service .procedure__wrap li:last-child,
.service .reservation__wrap li:last-child) {
    margin-right: 40px;
}
.service .procedure__wrap li:not(.service .procedure__wrap li:last-child,
.service .reservation__wrap li:last-child)::after,
.service .reservation__wrap li:not(.service .procedure__wrap li:last-child,
.service .reservation__wrap li:last-child)::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/icon/arrow_gray.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    right: -30px;
    top: 27px;
}
.service .procedure__wrap li > img,
.service .reservation__wrap li > img {
    width: 34px;
    height: 34px;
    background-color: #333;
    border-radius: 16px;
    box-sizing: initial;
    padding: 18px;
}
.service .procedure__wrap li > p,
.service .reservation__wrap li > p {
    margin-top: 10px;
}
.service .procedure__wrap li .p-alert,
.service .reservation__wrap li .p-alert {
    background-color: #276a3b;
    border-radius: 8px;
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 3px 8px;
}
.service .reservation__wrap li::after {
    display: none !important;
}
.service .serviceSub__wrap li {
    display: flex;
    align-items: center;
}
.service .serviceSub__wrap li:not(.service .serviceSub__wrap li:last-child) {
    margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
    .service .serviceSub__wrap li:not(.service .serviceSub__wrap li:last-child) {
        margin-bottom: 20px;
    }
}
.service .serviceSub__wrap li > img {
    width: 70px;
    height: 70px;
    background-color: #333;
    border-radius: 16px;
    margin-right: 14px;
    padding: 20px;
}

.sales {
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .sales {
        margin-bottom: 115px;
    }
}
.sales .sub-container {
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .sales .sub-container .box {
        width: calc((100% - 2.4rem * (3 - 1)) / 3);
        margin-bottom: 2.4rem;
    }
    .sales .sub-container .box:nth-child(3n) {
        margin-right: 0;
    }
    .sales .sub-container .box:not(:nth-child(3n)) {
        margin-right: 2.4rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
    .sales .sub-container .box {
        width: calc((100% - 2.4rem * (1 - 1)) / 1);
        margin-bottom: 2.4rem;
    }
    .sales .sub-container .box:nth-child(1n) {
        margin-right: 0;
    }
    .sales .sub-container .box:not(:nth-child(1n)) {
        margin-right: 2.4rem;
    }
}
.sales .sub-container .box {
    max-height: auto;
    padding: 0;
    position: relative;
}
.sales .sub-container .box a {
    flex-direction: column;
}
.sales .sub-container .box img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media only screen and (min-width: 768px) {
    .sales .sub-container .box img {
        height: 270px;
    }
}
.sales .sub-container .box .box__title {
    width: 100%;
    background-color: #222;
    padding: 20px;
}
.sales .sub-container .box .box__title p {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.sales .sub-container .box .box__title p:first-child {
    font-family: "pretendardB", Arial, sans-serif;
    font-size: 1.6rem;
    position: relative;
}
.sales .tabs {
    justify-content: left;
}
.sales .tab:not(.sales .tab:last-child) {
    margin-right: 8px;
}
.sales .tab[data-tab=special] {
    font-size: clamp(1.2rem, 1.2vw, 1.6rem);
}
.sales .tab-content__wrap div {
    color: #ffffff;
}
.sales .tab-content a {
    width: 100%;
    max-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (min-width: 768px) {
    .sales .tab-content a {
        max-height: initial;
    }
}
.sales_sub {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .sales_sub {
        margin-bottom: 123px;
    }
}
@media only screen and (min-width: 768px) {
    .sales_sub .sub-container {
        align-items: flex-start;
    }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .sales_sub .sub-container .box {
        width: calc((100% - 2.4rem * (2 - 1)) / 2);
        margin-bottom: 2.4rem;
    }
    .sales_sub .sub-container .box:nth-child(2n) {
        margin-right: 0;
    }
    .sales_sub .sub-container .box:not(:nth-child(2n)) {
        margin-right: 2.4rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
    .sales_sub .sub-container .box {
        width: calc((100% - 2.4rem * (1 - 1)) / 1);
        margin-bottom: 2.4rem;
    }
    .sales_sub .sub-container .box:nth-child(1n) {
        margin-right: 0;
    }
    .sales_sub .sub-container .box:not(:nth-child(1n)) {
        margin-right: 2.4rem;
    }
}
.sales_sub .sub-container > .box {
    background-color: transparent;
    border: none;
    padding: 0;
}
@media only screen and (min-width: 768px) {
    .sales_sub .sub-container > .box {
        border-radius: 0;
    }
}
.sales_sub .sub-container .box-fake {
    background-color: #222;
    border-radius: 16px;
    margin-bottom: 10px;
    padding: 20px;
}
@media only screen and (min-width: 768px) {
    .sales_sub .sub-container .box-fake {
        border-radius: 28px;
        margin-bottom: 25px;
        padding: 40px;
    }
}
.sales_sub .sub-container .box-contact h5 {
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .sales_sub .sub-container .box-contact h5 {
        font-size: 2.4rem;
    }
}
.sales_sub .subBox > .txt-main1.txt-bold {
    margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
    .sales_sub .subBox > .txt-main1.txt-bold {
        margin-bottom: 20px;
    }
}
.sales_sub .subBox__inner {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .sales_sub .subBox__inner .box {
        width: calc((100% - 4.8rem * (2 - 1)) / 2);
        margin-bottom: 4.8rem;
    }
    .sales_sub .subBox__inner .box:nth-child(2n) {
        margin-right: 0;
    }
    .sales_sub .subBox__inner .box:not(:nth-child(2n)) {
        margin-right: 4.8rem;
    }
}
@media (max-width: 767px) {
    .sales_sub .subBox__inner .box {
        width: calc((100% - 4.8rem * (1 - 1)) / 1);
        margin-bottom: 4.8rem;
    }
    .sales_sub .subBox__inner .box:nth-child(1n) {
        margin-right: 0;
    }
    .sales_sub .subBox__inner .box:not(:nth-child(1n)) {
        margin-right: 4.8rem;
    }
}
.sales_sub .subBox__inner .box {
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .sales_sub .subBox__inner .box {
        margin-bottom: 14px !important;
    }
}
.sales_sub .subBox__inner .box .d-flexBtw {
    align-items: flex-start;
}
.sales_sub .subBox__inner .box .d-flexBtw p.txt-main2 {
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.sales_sub .subBox__inner .box .d-flexBtw p:first-child {
    min-width: 100px;
    margin-right: 10px;
}
.sales_sub .with-dot {
    margin-bottom: 12px;
}
@media only screen and (min-width: 768px) {
    .sales_sub .with-dot {
        margin-bottom: 15px;
    }
}
.sales_sub .with-dot p {
    margin-bottom: 5px;
    margin-left: 15px;
    position: relative;
}
.sales_sub .with-dot p::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    position: absolute;
    left: -10px;
    top: 10px;
}
.sales_sub .with-dot p.txt-gray::before {
    background-color: #888;
}
.sales_sub .swiper__custom .swiper-pagination-bullet {
    background-color: #999;
}
.sales_sub .swiper__custom .swiper-pagination-bullet-active {
    background-color: #d9d9d9;
}
.sales_sub .gallery-top {
    min-height: 220px;
    height: 30vw;
    border: 1px solid #444444;
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .sales_sub .gallery-top {
        min-height: 430px;
        border-radius: 28px;
    }
}
.sales_sub .gallery-top .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}
.sales_sub .gallery-top .swiper-slide img {
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.sales_sub .gallery-thumbs {
    box-sizing: initial;
    height: 60px;
    position: relative;
    padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .sales_sub .gallery-thumbs {
        height: 114px;
    }
}
.sales_sub .gallery-thumbs .swiper-slide {
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    .sales_sub .gallery-thumbs .swiper-slide {
        border-radius: 14px;
    }
}
.sales_sub .swiper-pagination {
    bottom: 0px !important;
}

.breadcrumb__txt {
    font-size: 2rem;
    color: white;
    font-family: "pretendardL", Arial, sans-serif;
    font-weight: 300;
}
.breadcrumb__txt span {
    font-size: 2rem;
    color: white;
    font-family: "pretendardL", Arial, sans-serif;
    font-weight: 300;
}
.breadcrumb__txt span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
    background-image: url(../images/icon/breadcrumb.svg);
}
.breadcrumb__txt span.active {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    font-family: "pretendarEB", Arial, sans-serif;
    position: relative;
}
.breadcrumb__salesSub li:first-child {
    min-width: 83px;
}
@media only screen and (min-width: 768px) {
    .breadcrumb__salesSub li:first-child {
        min-width: initial;
    }
}
.breadcrumb__salesSub li:not(.breadcrumb__salesSub li:last-child)::after {
    right: -14px;
}
@media only screen and (min-width: 768px) {
    .breadcrumb__salesSub li:not(.breadcrumb__salesSub li:last-child)::after {
        right: -16px;
    }
}
.breadcrumb__salesSub li.active {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.fit-me {
    /* 텍스트가 줄어들 때 중앙에서 축소되도록 설정 */
    transform-origin: top left;
    /* transition을 추가하여 부드러운 애니메이션 효과 */
}

.ourStory {
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .ourStory {
        margin-bottom: 115px;
    }
}
.ourStory .sub-container {
    display: flex;
    flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
    .ourStory .sub-container .box {
        width: calc((100% - 1.5rem * (3 - 1)) / 3);
        margin-bottom: 1.5rem;
    }
    .ourStory .sub-container .box:nth-child(3n) {
        margin-right: 0;
    }
    .ourStory .sub-container .box:not(:nth-child(3n)) {
        margin-right: 1.5rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
    .ourStory .sub-container .box {
        width: calc((100% - 1.5rem * (1 - 1)) / 1);
        margin-bottom: 1.5rem;
    }
    .ourStory .sub-container .box:nth-child(1n) {
        margin-right: 0;
    }
    .ourStory .sub-container .box:not(:nth-child(1n)) {
        margin-right: 1.5rem;
    }
}
.ourStory .sub-container .box {
    height: 20vw;
    min-height: 240px;
    max-height: 340px;
    padding: 0;
    position: relative;
}
.ourStory .sub-container .box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.ourStory .sub-container .box .box-title {
    display: flex;
    margin-bottom: 3px;
}
.ourStory .sub-container .box .box-title__wrap {
    width: 100%;
    background-color: rgba(34, 34, 34, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 12px 20px;
}
.ourStory .sub-container .box .box-title__date span {
    color: #ffffff;
    margin-left: 20px;
    position: relative;
}
.ourStory .sub-container .box .box-title__date span::before {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #ffffff;
    position: absolute;
    left: -10px;
    top: 3px;
}
.ourStory .sub-container .box .box-title p {
    font-family: "pretendardB", Arial, sans-serif;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.ourStory .sub-container .box .box-title__mark {
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.2rem;
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 8px 16px;
}
@media only screen and (min-width: 768px) {
    .ourStory .sub-container .box .box-title__mark {
        font-size: clamp(10px, 1.2vw, 1.6rem);
    }
}
.ourStory .sub-container .box .box-title__mark-youtube {
    background-color: #e94929;
}
.ourStory .sub-container .box .box-title__mark-blog {
    background-color: #276a3b;
}
.ourStory .sub-container .box .box-title__mark-insta {
    background: linear-gradient(90deg, #fdcb77 -14.42%, #d54882 43.34%, #8f5ca7 100%);
}
.ourStory .tabs {
    justify-content: left !important;
}
.ourStory .tab:not(.ourStory .tab:last-child) {
    margin-right: 8px;
}
.ourStory .tab-content__wrap div {
    color: #ffffff;
}
.ourStory .btn-center {
    display: block;
    margin: 20px auto 0;
}
@media only screen and (min-width: 768px) {
    .ourStory .btn-center {
        margin: 40px auto 0;
    }
}

.notice {
    display: block;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .notice {
        margin-bottom: 67px;
    }
}
.notice .sub-container--2 {
    display: block;
}
.notice .sub-container--2 p,
.notice .sub-container--2 div,
.notice .sub-container--2 span {
    color: #ffffff;
    line-height: 2.5rem;
}
.notice .box {
    border-radius: 16px;
    padding: 20px 20px 20px 20px;
}
@media only screen and (min-width: 768px) {
    .notice .box {
        border-radius: 28px;
        padding: 40px 40px 40px 40px;
    }
}
.notice .accordion__title {
    display: flex;
    align-items: start;
    position: relative !important;
}
.notice .accordion__title > p,
.notice .accordion__title h5 {
    font-size: 1.6rem;
    line-height: 3rem;
}
@media only screen and (min-width: 768px) {
    .notice .accordion__title > p,
    .notice .accordion__title h5 {
        font-size: 2rem;
    }
}
.notice .accordion__title > p {
    color: #276a3b;
    min-width: 44px;
}
@media only screen and (min-width: 768px) {
    .notice .accordion__title > p {
        min-width: 65px;
    }
}
.notice .accordion__title h5 {
    font-family: "pretendardB", Arial, sans-serif;
    margin-right: 25px;
}
@media only screen and (min-width: 768px) {
    .notice .accordion__title h5 {
        margin-right: 0;
    }
}
.notice .accordion__title-right {
    margin-left: auto;
    display: flex;
}
@media only screen and (min-width: 768px) {
    .notice .accordion__title-right {
        margin-right: 0px;
    }
}
.notice .accordion__title-right .arrow-icon {
    display: block;
    width: 28px;
    padding-top: 0;
    top: 1.2rem;
    right: 0;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
    .notice .accordion__title-right .arrow-icon {
        width: 32px;
        top: 1.2rem;
    }
}
.notice .ckEditor__wrap {
    margin-top: 20px;
    margin-left: 44px;
}
@media only screen and (min-width: 768px) {
    .notice .ckEditor__wrap {
        margin-left: 65px;
    }
}
.notice .ckEditor__wrap > *:not(:first-child) {
    margin-top: 15px;
}
.notice .date {
    margin-left: 10px;
    white-space: nowrap;
}
.notice .date span {
    margin-left: 15px;
    margin-right: 40px;
    position: relative;
}
.notice .date span::before {
    content: "";
    width: 1px;
    height: 9px;
    background-color: #888;
    position: absolute;
    left: -8px;
    top: 3px;
}
@media only screen and (min-width: 768px) {
    .notice .date span::before {
        height: 11px;
    }
}
.notice .date__pc {
    display: none;
}
@media only screen and (min-width: 768px) {
    .notice .date__pc {
        display: block;
    }
}
.notice .date__mobile {
    display: block;
}
@media only screen and (min-width: 768px) {
    .notice .date__mobile {
        display: none;
    }
}
.notice .btn-more {
    display: block;
    margin: 20px auto 0;
}
@media only screen and (min-width: 768px) {
    .notice .btn-more {
        margin: 40px auto 0;
    }
}

.error__wrap {
    text-align: center;
    margin-top: 50px;
}
@media only screen and (min-width: 768px) {
    .error__wrap {
        margin-top: 100px;
    }
}
.error__wrap h2 {
    color: #ffffff;
    font-family: "pretendardB", Arial, sans-serif;
    font-size: 4.8rem;
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .error__wrap h2 {
        font-size: 9.8rem;
    }
}
.error__wrap p {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .error__wrap p {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}
.error__wrap span {
    color: #888;
    font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
    .error__wrap span {
        font-size: 2rem;
    }
}

.agree {
    padding: 2.5rem;
    background-color: white;
}
.agree p {
    font-size: 1.2rem;
    line-height: 1.8rem;
}
.agree table {
    border-style: initial;
}
.agree .close {
    width: 20px;
    box-sizing: initial;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px;
    z-index: 5;
}
.agree .dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: #222;
    margin-right: 8px;
    position: relative;
    top: 5px;
}
.agree .dot + p {
    display: block;
    width: calc(100% - 30px);
}
.agree .dot + span {
    margin-left: 10px;
    font-size: 1.5rem;
    line-height: 1rem;
}
.agree .dot__small {
    display: block;
    margin: 5px 0;
    margin-left: 18px;
    position: relative;
}
.agree .dot__small::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: -8px;
    top: 8px;
}
.agree .hyphen {
    margin-right: 8px;
    font-size: 1.2rem;
}
.agree .agree__title {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 0px;
}
.agree .agree__titleSub {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.agree .agree__list {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0 5px;
}
.agree .agree__cnt {
    padding-bottom: 1.2rem;
}
.agree .agree__cnt__sub {
    color: #7C7C7C;
}
.agree .agree__cnt strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin: 0.6rem 0;
}
.agree .agree__cnt p {
    padding-bottom: 0.6rem;
}
.agree .agree__cnt p + p {
    padding-bottom: 1rem;
}
.agree .agree__cnt em {
    font-weight: 700;
    text-decoration: underline;
}
.agree .agree__cnt table {
    font-size: 1.2rem;
    margin-top: 1rem;
}
.agree .agree__cnt table + p {
    margin-top: 3rem;
}
.agree .agree__cnt table .table__md {
    font-weight: 500;
}
.agree .agree__cnt table th {
    padding: 2rem 1.6rem;
    text-align: center;
    color: #222222;
    background-color: #E3E4FF;
    border-radius: 0.4rem;
    font-weight: 400;
}
.agree .agree__cnt table th:not(:last-child) {
    border-right: 1rem solid #fff;
}
.agree .agree__cnt table th + td {
    border-top: 1px solid #b2b2b2;
}
.agree .agree__cnt table td {
    padding: 2rem;
    color: #222222;
    border-bottom: 1px solid #b2b2b2;
}
.agree .agree__cnt table td:not(:last-child) {
    border-right: 1rem solid #fff;
}
.agree .agree__cnt table td.border {
    border: 1px solid #b2b2b2;
}
.agree .agree__cnt table td.border--top {
    border-top: 1px solid #b2b2b2;
}
.agree .agree__cnt table td em {
    display: block;
    font-weight: 700;
    text-decoration: underline;
}
.agree .agree__cnt table td em + em {
    margin-top: 5px;
}
.agree .agree__border {
    border: 1px solid #000;
    padding: 1.2rem 1.2rem;
    margin-bottom: 1.2rem;
}
.agree .agree__subD1 {
    display: flex;
}
.agree .agree__subD2 {
    display: flex;
    margin-left: 10px;
}
.agree .boxRight {
    box-sizing: initial;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.7rem 0.7rem;
    margin: 1rem 1rem;
    z-index: 5;
}

.underline {
    height: 2px;
    background-color: #222;
    margin-bottom: 10px;
}

.deco_underline {
    position: relative;
}
.deco_underline:after {
    content: "";
    width: calc(100% - 8px);
    display: block;
    height: 1px;
    background-color: gray;
    position: relative;
    left: 8px;
}
