/* @font-face {
	font-family: 'Pretendard-Regular';
	font-style: normal;
	font-weight: normal;
	src: url(font/Pretendard-Regular.woff2) format('woff2');
}
@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 400;
	src: url(font/PretendardVariable.woff2) format('woff2');
} */
@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 400;
	src: url(font/PretendardVariable.woff2) format('woff2');
}
@font-face {
	font-family: 'CommutersSans';
	font-weight: 300;
	src: url(font/CommutersSans-Light.woff2) format('woff2');
}
@font-face {
    font-family: 'CommutersSans';
	font-weight: 400;
	src: url(font/CommutersSans-Regular.woff2) format('woff2');
}
@font-face {
    font-family: 'CommutersSans';
    font-weight: 600;
    src: url(font/CommutersSans-Semibold.woff2) format('woff2');
}
@font-face {
    font-family: 'CommutersSans';
    font-weight: 700;
    src: url(font/CommutersSans-Bold.woff2) format('woff2');
}
:root {
	--max-screen-width: 1400px;
    --max-content-width: 1200px;

	--page-top-bg-color: #EEE;
	--page-bg-color: #F5F5F5;
	/* --page-bg-color: #202020; dark 샘플*/
	/* --page-point1-color: #C393CB; */
	--page-point1-color: #1A1A1A;
	--page-point2-color: #BD9171;
	--page-base1-color: #D4CECA;
    --page-common1-color: #9E9E9E;

	
	--swiper-pagination-color: var(--page-point1-color);
	--swiper-pagination-point: var(--page-common1-color);
	--swiper-pagination-base: #E8E3DF;

	--divider-color: #CCC;

	--highlight-color: #f8b933;
	--highlight-color-rgb: 255, 93, 93;

    --sat: env(safe-area-inset-top, 0);
    --sar: env(safe-area-inset-right, 0);
    --sab: env(safe-area-inset-bottom, 0);
    --sal: env(safe-area-inset-left, 0);

    --btm-menu-height: 66px;
    --btm-menu-zindex: 100;
    --btm-menu-posy-from-bottom: calc(var(--sab) + var(--btm-menu-height));
    --progress-height: 2px;
    --product-area-height: 66px;
    --video-description-height: 50px;
    --header-sub-height: 70px;
}

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

html {
	position: relative;
	height: 100vh;     
    font-family: "CommutersSans","Pretendard Variable","sans-serif";
    font-weight: 400;
	font-size: 14px;
    word-break: keep-all;
	color: #000;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	-ms-overflow-style: none;
}

body {
    top: env(safe-area-inset-top) !important;
    width: 100%;
    min-width: 280px;
    height: calc(100% - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
    position: fixed !important;
    overflow-y: auto;
    /* max-width: var(--max-screen-width); */
}
body[data-lang='en'] * {
  letter-spacing: 0.32px;
}

ul,li{
    list-style: none;
}
/*웹뷰에서 모달창이 떠있을때 스크롤 방지용*/
::-webkit-scrollbar {
    width: 0.1vw;
}
::-webkit-scrollbar-thumb {
    cursor: grab;
    /*background-color: var(--primary);*/
}

.menu-mobile-modal {
    width:100vw;
    height:100vh;
    background: #FFF;
    position:fixed;
    top:0;
    left:0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
.menu-mobile-modal .mobile-modal-header {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:21px;
    margin-bottom: 17px;
}
.menu-mobile-modal .mobile-modal-header .close {
    cursor: pointer;
}
.menu-mobile-modal .menus {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 35px;
    flex:1;
}
.menu-mobile-modal .menus div {
    color: #1A1A1A;
    font-family: "CommutersSans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    width:fit-content;
}
.menu-mobile-modal .menus .modal-language {
    color: var(--page-common1-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 10px;
}
.menu-mobile-modal .menus .modal-menu {
    line-height: 24px;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-weight: 400;
}
.menu-mobile-modal .menus .modal-menu.active {
    font-weight: 600;
}
.menu-mobile-modal .modal-footer-wrap {
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top:auto;
}
.menu-mobile-modal .modal-footer-wrap .modal-instagram {
    font-family: "CommutersSans", sans-serif;
    width: 100%;
    line-height: 24px;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    padding: 30px 35px;
    display: flex;
    align-items: center;
}
.menu-mobile-modal .modal-footer-wrap .modal-instagram img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.menu-mobile-modal .mobile-modal-footer {
    width: 100%;
    padding: 30px 20px;
    background: #EEE;
    display: flex;
    flex-direction: column;
}
.menu-mobile-modal .mobile-modal-footer .footer-logo {
    display: flex;
    align-items: center;
    height: 18px;
}
.menu-mobile-modal .mobile-modal-footer img {
    height: 100%;
}
.menu-mobile-modal .mobile-modal-footer .text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
}
.menu-mobile-modal .mobile-modal-footer .text a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* Scope everything under body.home */
.home {
    background:var(--page-bg-color);
    color:var(--page-point1-color);    
}
.home a {
    color:var(--page-point1-color);
    text-decoration:none
}
/* Skip */
.home .skip {
    position:absolute;
    left:-1000px;
    top:auto
}
.home .skip:focus {
    left:8px;
    top:8px;
    background:#111;
    color:#fff;
    padding:8px 10px;
    border-radius:6px
}
/* Header / Nav */
.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background:#FFF;
    backdrop-filter: saturate(180%) blur(8px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #D9D9D9;
}
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
.nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 42px 18px;
}
.mobile-nav {
    display: none;
    max-width: var(--max-content-width);
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 21px;
    width: 100%;
}
.web-nav {
    width: 100%;
    max-width: var(--max-content-width);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}
.menu-nav {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    transition-timing-function: ease;
    transition-duration: 0.6s;
    transition-delay: 0s;

    width: 22px;
    height: 22px;
    color: #1A1A1A;
    background: url(../images/ico/ico-menu.png) 50% 100% no-repeat;

    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    cursor: pointer;
}
#lang-box{
    display:none;
}
.nav-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.nav-menu-wrap.right {
    left: unset;
    right: 20px;
    gap: 0;
}
.nav-menu {
    color: var(--page-common1-color);
    font-family: "CommutersSans", sans-serif;
    font-size: 16px;    
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}
.nav-menu.active {
    color: var(--page-point1-color);
    font-weight: 700;
}
.nav-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-icon-wrap img {
    max-width: 20px;
}
.nav-icon-wrap.icon {
    margin-left: 20px;
    margin-right: 14px;
}

.contact-nav {
    color: #1A1A1A;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    cursor: pointer;
}
.contact-nav img {
    display: block;
    height: 20px;
}
.contact-nav.instagram {
    left: 0;
    top: unset;
    transform: none;
}
.contact-nav.mypage {
    left: unset;
    right: 0;
    top: unset;
    transform: none;
    display: flex;
    gap: 16px;
}
.web-menu-nav {    
    max-width: var(--max-screen-width);
    padding: 96px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 0 20px 0;
}
.web-menu {
    color: #1A1A1A;
    font-family: "CommutersSans", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    /* text-transform: uppercase; */
}
.brand {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 212px;
    height: 36px;
}
.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1000px) {
    .brand {
        height: 22px;
    }
    .nav {
        /*justify-content: space-between;*/
        padding: 0;
    }
    .mobile-nav {
        display: flex;
    }
    .web-nav {
        display: none;
    }
}

.right-icon {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px; 
}
.right-icon.mobile {
    display: none;
}
.instagram {
    display: block;
    width: 22px;
    height: 22px;
}

.ico-mypage {
    display: block;
    width: 22px;
    height: 22px;
}
.ico-mypage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-btn {
    cursor: pointer;
    color: var(--page-common1-color);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}
.lang-btn.active {
    color: #1A1A1A;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}
.lang-divider {
    color: #9E9E9E;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0 4px;
}

.right-icon span.divider {
    font-weight: 255;
    cursor: text;
}

@media (max-width: 1000px) {
    .right-icon {
        display: none;
    }
    .right-icon.mobile {
        display: flex;
    }
    .instagram {
        display:flex;
    }
    .ico-mypage {
        display: flex;
    }

}

/* Layout */
.home .section {
    padding: 48px 20px;
}

.home .wrap {
    max-width:var(--max-screen-width);
    margin: 0 auto;
}
.home h2 {
    font-size:28px;
    margin: 0 0 6px 0;
}
.home h3 {
    font-size:22px;
    margin: 6px 0 18px;
}
.home p {
    line-height: 1.8;
    color: var(--page-point1-color);
    margin: 0 0 12px;
}
.home.shop p {
    line-height: 1.8;
    color: var(--page-point1-color);
    margin: 0;
}
.home .muted {
    color:var(--page-common1-color)
}
/* Hero */
.home .hero {
    width:100%;
    /*max-width: var(--max-screen-width);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home .hero-swiper {
    width: 100%;
    height: 500px;
    position:relative;
}
.home .hero-swiper.shop {
    height: 300px;
}
.home .hero .gallery {
    width:100%;
    background: #000;
    height:100%;
    position: relative;
}
.home .hero .gallery.beige {
    background: #dbcaba;
}
.home .hero .gallery picture img {
    max-width: 1920px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin:0 auto;
}
.home .hero .hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display:flex;
    align-items: center;
    justify-content: center;    
}
.home .hero .hero-content .text {
    max-width: var(--max-screen-width);
    width: 100%;
    text-align: left;
    padding: 0 100px;
}
.home .hero .hero-content .text p {
    color:#F5F5F5;
}
.home .hero .hero-content .text.black p {
    color:#1A1A1A;
}
.home .hero .hero-content .text-title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 36px;
    font-family: "CommutersSans","Pretendard Variable","sans-serif";
}
.home .hero .hero-content .text-subTitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
}
/* IG banner */
.home .ig-banner {
    background:#f5f5f5;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee
}
.home .ig-banner .row {
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center
}
.home .ig-banner p {
    margin:20px;
}
@media (max-width: 1000px) {
    .home .hero {
        margin-bottom: unset;
    }
    .home .hero-swiper {
        width: 100%;
        height: 750px;
        position: relative;
    }
    .home .hero-swiper.shop {
        width: 100%;
        height: 350px;
        position: relative;
    }
    .home .hero .hero-content {
        height:100%;
    }
    .home .hero .hero-content .text {
        width:100%;
        height:100%;
        text-align: left;
        padding:68px 21px;
    }
    .home .hero .hero-content .text-title {
        font-size: 26px;
    }
    .home .hero .hero-content .text-subTitle {
        max-width: 100%;
    }
}
@media (max-width: 640) {
    .home .hero-swiper {
        width: 100%;
        height: 600px;
        position: relative;
    }
}


/* value */
.home .value {
    max-width: var(--max-screen-width);
    padding: 96px;
    margin: 0 auto;
    position:relative;
}

.home .value-title {
    color: #1A1A1A;
    font-size: 28px;
    font-weight: 600;
    margin-bottom:28px;
    text-align: center;
    text-transform: uppercase;
}
.home .value-subTitle {
    color: #1A1A1A;
    font-size: 16px;
    line-height: 24px; /* 150% */
    margin-bottom:40px;
    text-align: center;
    /* text-transform: uppercase; */
}

.home .value-swiper {
    margin-bottom: 56px;
}
.home .value swiper-slide {
    width: 282px;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--page-bg-color);
}
.home .value .value-gallery {
    width: 282px;
    height: 423px;
    flex-shrink: 0;
    background: var(--page-base1-color);
    position:relative;
}
.home .value .value-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home .value-gallery .badge {
    width:96px;
    height:96px;
    position:absolute;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #201E22;
    color: #F5F5F5;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
    top: 12px;
    right: 12px;
}
.home .product-introduction {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex:1;
    margin-top:28px;
}
.home .introduction-title {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    height: auto;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home .introduction-subTitle {
    color: #1A1A1A;
    font-size: 14px;
    line-height: 20px;
}
.home .swiper-container {
    position: relative;
    overflow: visible;
}
/* 비활성 블렛 (흰색 50%) */
.hero-swiper::part(bullet) {
    background: #fff; /* 흰색 */
    opacity: 0.5;
    margin:0 6px;
}
/* 활성 블렛 (흰색) */
.hero-swiper::part(bullet-active) {
    background: #fff; /* 흰색 */
    opacity: 1;
    margin:0 6px;
}
.swiper-nav{
    height:100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 140px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index:1;
}
.full-swiper-nav{
    width: 100%;
    max-width:var(--max-screen-width);
}
.swiper-nav .swiper-nav-next img{
    transform: rotate(180deg);
}

.swiper-nav .swiper-nav-prev,
.swiper-nav .swiper-nav-next{
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width:70px;
    height:100%;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.swiper-nav .swiper-nav-prev.swiper-button-disabled,
.swiper-nav .swiper-nav-next.swiper-button-disabled {
    visibility: hidden;
}

.home .value-progressbar-virtual {
    position:relative;
}
.home .lineup .go-shop {
    width: fit-content;
    cursor: pointer;
    margin: 0 auto;
    border: solid 1px #D9D9D9;
    color: #FFF;
    background: #1A1A1A;
    border-radius: 4px;
    padding: 10px;
}
.home .lineup swiper-slide {
    width: 282px;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--page-bg-color);
}
.home .lineup  .go-shop .go-shop-btn{

}
.home .value-progressbar-virtual .progressbar {
    display:flex;
    align-items: center;
    justify-content: center;
}
.home .progressbar .swiper-pagination-bullet {
    width:100%;
    height:2px;
    border-radius: unset;
    margin:unset !important;
    background: #D9D9D9;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home .progressbar .swiper-pagination-bullet-active {
    background: #201E22;
}
@media (max-width: 1000px) {
    .home .swiper-nav {
        display: none;
    }
    .home .value {
        padding: 80px 21px;
    }
    .home .value-title {
        text-align: left;
    }
    .home .value-subTitle {
        text-align: left;
    }
    .home .value swiper-slide {
        width: 256px;
    }
    .home .value .value-gallery {
        width: 256px;
        height: 384px;
    }
    .home .value-gallery .bedge {
        width: 72px;
        height: 72px;
    }
    .home .value-progressbar-virtual {
        margin-bottom: 46px;
    }
}
/* kimbugak */
.home .kimbugak {
    background: #201E22;
    width:100%;
}
.home .kimbugak-inner {
    margin: 0 auto;
    max-width: var(--max-screen-width);
    padding: 96px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.home .kimbugak-title {
    color: #F5F5F5;
    font-size: 28px;
    font-weight: 600;
}
.home .kimbugak-introduction {
    display: flex;
    flex-direction: column;
}

.home .introduction-container {
    display:flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap:24px;
    padding-top:24px;
    padding-bottom:24px;
    border-bottom:solid 1px #FFF;
}
.home .introduction-container:first-of-type {
    padding-top:0;
}
.home .introduction-container:last-of-type {
    border-bottom:unset;
    padding-bottom:0;
}
.home .introduction-container div {
    color: #F5F5F5;
    font-size: 16px;
    line-height: 24px; /* 150% */
}
.home .introduction-container .introduction-name {
    font-size: 20px;
    font-weight: 600;
    min-width:180px;
    flex: 1 1 180px;
}

.home .introduction-container .introduction-number {
    min-width: 40px;
}
.home .introduction-container .introduction-description {
    flex: 1 1 486px;
    letter-spacing: -0.1px;
    line-height: 26px;
}

@media (max-width: 1000px) {
    .home .kimbugak {
        margin-bottom:unset;
    }
    .home .kimbugak-inner {
        flex-direction: column;
        gap: 52px;
        padding: 60px 21px;
    }

    .home .kimbugak-title {
        width: 100%;
    }
    .home .introduction-container {
        flex-direction: column;
        gap:20px;
    }
    .home .introduction-container div:nth-child(1),
    .home .introduction-container div:nth-child(2),
    .home .introduction-container div:nth-child(3) {
        flex: 1;
    }
}
/* line-up */
.home .lineup {
    max-width: var(--max-screen-width);
    padding: 96px;
    margin: 0 auto;
    position: relative;
}
.home .lineup swiper-slide {
    width: 384px;
    display:flex;
    flex-direction: column;
    align-items: flex-start
}

.home .lineup .value-gallery {
    width: 384px;
    height: 576px;
    flex-shrink: 0;
    background: var(--page-base1-color);
    position: relative;
}
.home .lineup .value-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1000px) {
    .home .lineup {
        padding: 80px 21px;
    }
    .home .lineup swiper-slide {
        width: 256px;
    }

    .home .lineup .value-gallery {
        width: 256px;
        height: 384px;
    }
}
/* popup-store */
.home .popup-container {
    width:100%;
    background: var(--page-base1-color);
}
.home .popup {
    padding: 96px;
    margin: 0 auto;
    background: var(--page-base1-color);
    max-width: var(--max-screen-width);
    position: relative;
}

.home .popup swiper-slide {
    width: 282px;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    background: unset;
    cursor: pointer;
}
.home .popup .value-gallery {
    width: 282px;
    height: 423px;
    flex-shrink: 0;
    position:relative;
}
.home .popup .value-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home .popup .value-progressbar-virtual {
    max-width: 1200px;
    width: 100%;
}
@media (max-width: 1000px) {
    .home .popup {
        padding: 80px 21px;
    }
    .home .popup swiper-slide {
        width: 256px;
    }
    .home .popup .value-gallery {
        width: 256px;
        height: 384px;
    }
}
/* Three facts */
.home .facts {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.home .fact {
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:24px
}
.home .fact .no {
    font-size:14px;
    letter-spacing:.2em;
    color:#9ca3af
}
@media (max-width:900px) {
    .home .facts {
    grid-template-columns:1fr
}
}/* Lineup */
.home .lineup-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.home .card {
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    display:flex;
    flex-direction:column
}
.home .card .body {
    padding:16px 16px 20px
}
.home .card h4 {
    margin:4px 0 2px;
    font-size:18px
}
.home .card p {
    margin:0;
    color:#374151
}
@media (max-width:1000px) {
    .home .lineup-grid {
    grid-template-columns:repeat(2,1fr)
}
}@media (max-width:640px) {
    .home .lineup-grid {
    grid-template-columns:1fr
}
}/* Heritage */
.home .heritage {
    background:#0f0f10;
    color:#fff
}
.home .heritage p {
    color:#e5e7eb
}

/* Footer */
.footer {
    background: #EEE;
    color: #333;
    display: flex;
    justify-content: center;
}

.footer-wrap {
    /* max-width: var(--max-screen-width); */
    padding: 48px 96px;

    display: grid;
    grid-template-columns: 1fr 1fr; /* 기본: 로고 1, info 전체 */
    align-items: start;
    column-gap: 16px;
    width: 100%;
    margin: 0 auto;
    max-width: var(--max-screen-width);
}

.footer-wrap .brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-wrap .brand-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr; /* info / address */
  gap: 16px;
}
.footer-block div {
    letter-spacing: 0.32px;
}

@media (max-width: 765px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo info"
      ". address";
    padding: 48px 21px;
  }

  .brand-logo {
    grid-area: logo;
  }

  .footer-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* 마지막 footer-block(address 부분만 아래로 내리기) */
  .footer-info .footer-block:last-child {
    grid-area: address;
    text-align: left;
    margin-top: 8px;
  }
}
@media (max-width: 400px) {
    .footer-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .footer-wrap .brand-logo img {
        width: 150px;
        height: auto;
        display: block;
    }
    .footer-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-info .footer-block:last-child {
        margin-top: 6px;
    }
}

/* popup */
.popup .nav-menu {
    /* margin-left: 21px; */
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    gap:5px;
}

.popup .popup-section {
    /* display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: var(--max-screen-width);
    margin: 21px; */

    overflow: visible;
    max-width: var(--max-screen-width);
    margin: 21px auto;
    padding:0 10px;
    box-sizing: border-box;
    position:relative;

    display:flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap:30px
}
.popup .popup-images {
    cursor: ns-resize;
    height: 100%;
    min-width: 50%;
    object-fit: cover;
}
.popup .popup-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.popup .content-wrapper {
    position:sticky;
    top: 56px;
    max-width: calc(50% - 44px);

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup .content-main {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  margin-top: 20px;
}
@media (max-width:640px) {
    .popup .popup-section {
        flex-direction: column;
    }
    .popup .popup-images {
        overflow: auto;
        display:flex;
        align-items: center;
        width: 100%;
        cursor: ew-resize;
    }
    .popup .popup-image {
        min-width: 300px;
        min-height: 300px;
        overflow: hidden;
    }
    .popup .popup-images img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
    }
    .popup .content-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        max-width: unset;
    }
}

.popup .content-header .header-title {
    font-weight: 700;
}
.popup .content-header .header-divider {
    font-size: 14px; margin: 0 8px
}
.popup .content-wrapper .content-title {
    font-size: 28px;
    font-weight: 600;
}
.popup .content-wrapper .content-header {
    font-size: 15px;
    font-weight: 500;  
    line-height: 24px;  
}
.popup .content-wrapper .content-main {
    font-size: 15px;
    font-weight: 400;  
    line-height: 24px;  
}

/* contact */
.contact {
    background: var(--page-bg-color);
}
.contact .contact-section {
    display:flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    max-width: var(--max-screen-width);
    margin: 20px auto 60px auto;
    padding: 0 20px;
    letter-spacing: 0.32px;
}
.contact .banner-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 영역 꽉 채우고 넘치는 부분 자름 */
    max-width: 100%;
    max-height: 100%;
    display: block;
}
.contact .form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}
.contact .form-contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.contact fieldset {
    border:unset;
}
.contact legend {
    margin-bottom: 8px;
}
.contact .title {
    font-size: 16px;
}
.contact .title .required {
    font-size: 14px;
}
.contact .field-group {
    display:flex;
    align-items: center;
    gap: 10px;
}
.contact .field-group-column {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}
.contact .field-group .field {
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.contact .field-group .field label {
    font-size: 14px;
    white-space: nowrap;
}

.contact input:not([type='checkbox']),
.contact select,
.contact textarea {
    width: 100%;
    height: 28px;
    color:var(--page-point1-color);
    font-family: "CommutersSans","Pretendard Variable","sans-serif";
    font-weight: 300;
}

/* 각각의 세부 조정 */
.contact input:not([type='checkbox']) {
  height: 28px;
  padding: 0 5px;
}

.contact select {
  padding: 0 5px;
}

.contact textarea {
  padding: 10px;
  resize: vertical;
  min-height: 100px;
}

.contact input[type='checkbox'] {
    /* 기본 체크박스 스타일 제거 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* 크기 및 기본 박스 스타일 */
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    transition: all 0.2s ease;
    margin-left: 3px;
}

/* 체크된 상태 */
.contact input[type='checkbox']:checked {
  background-color: #000; /* 박스 배경 검정 */
  border-color: #000;
}

/* 체크 표시 (v 모양) */
.contact input[type='checkbox']:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 8px;
    border: solid #fff; /* 흰색 체크 표시 */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact input:focus {
    /*outline:unset;*/
}
.contact .option {
    display:flex;
    align-items: center;
    margin-top:5px;
    gap: 5px;
    line-height: 20px;
}
.contact .option label {
    flex: 1;
}
.contact .form-submit-button {
    width: fit-content;
    font-size: 16px;
    padding:19px 32px;
    background: #000;
    color:#FFF;
    text-transform:uppercase;
}
@media (max-width:756px) {
    .contact .contact-section {
        flex-direction: column;
        gap: 20px;
        margin: 0 auto 40px auto;
    }
    .contact .banner-image {
        flex: unset;
        height: 444px;
    }
    .contact .banner-image img {
        /* object-position: center calc(100% - -50px); */
    }
}

/* 공통 */
.d-flex-center {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

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

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

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

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
    --bs-border-width: 1px;
}

.border-2 {
    --bs-border-width: 2px;
}

.border-3 {
    --bs-border-width: 3px;
}

.border-4 {
    --bs-border-width: 4px;
}

.border-5 {
    --bs-border-width: 5px;
}

.border-opacity-10 {
    --bs-border-opacity: 0.1;
}

.border-opacity-25 {
    --bs-border-opacity: 0.25;
}

.border-opacity-50 {
    --bs-border-opacity: 0.5;
}

.border-opacity-75 {
    --bs-border-opacity: 0.75;
}

.border-opacity-100 {
    --bs-border-opacity: 1;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

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

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

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

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

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

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

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

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

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

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pb-6 {
    padding-bottom: 8rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.34375rem + 1.125vw) !important;
}

.fs-2 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-3 {
    font-size: calc(1.278125rem + 0.3375vw) !important;
}

.fs-4 {
    font-size: calc(1.25625rem + 0.075vw) !important;
}

.fs-5 {
    font-size: 1.09375rem !important;
}

.fs-6 {
    font-size: 0.875rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}
.word-keep {
    word-break: keep-all !important;
}

.swiper-bot-menu {
    width: 100%;
    height: calc(100% - var(--btm-menu-height));
    max-width: var(--max-screen-width);
}
.swiper-fullscreen {
    width: 100%;
    height: 100%;
    max-width: var(--max-screen-width);
}
swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cover {
    padding: 60px 30px 80px 30px;
    z-index: 2000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
#place_info_layer {
    height: 100%;
}
#place_info_layer .place-header {
    top: 10px;
}
#place_info_layer .place-slider {
    margin-top: 0px;
}
#filter_layer {
    height: 100%;
}
#filter_layer .filter-modal {
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 110px;
}
#filter_layer .filter-modal .btm-wrap {
    margin-bottom: 0px;
    padding-bottom: 20px;
}
#filter_layer .place-filter-modal {
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 110px;
}
#filter_layer .place-filter-modal .btm-wrap {
    margin-bottom: 0px;
    padding-bottom: 20px;
}
#filter_layer .header-sub {
    height: 70px;
}
#filter_layer .header-title {
    margin-top: 0px;
}
#filter_layer .header-back {
    margin-top: 0px;
}

/* order-modal */
.order-modal .order-modal-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
    margin: 20px 16px;
    overflow: auto;
}

.order-modal .order-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom:10px;
}
.order-modal .order-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width:100%;
}
.order-modal .order-section-title {
    font-size: 18px;
    font-weight: 600;
}
.order-modal .order-modal-footer {
    position:sticky;
    bottom: 0;
    left: 0;
}
.order-modal .order-modal-submit-button {
    display: flex;
    width: 100%;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #000;
    color:#FFF;
}

.order-modal  .disclaimer {
    display: flex;
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
    word-break: keep-all;
    justify-content: center;
    text-align: center;
}

/* 공용 input 컴포넌트*/
.input-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-section .input-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-section .input-check .option{
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-container .input-label-area {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 90px;
}
.input-container .input-address {
    width: 100%;
}
.input-container .input-text {
    font-size: 16px;
    font-weight: 500;
}
.input-container .input-text.optional:after {
    margin-left: 5px;
    content: "[선택]";
    display: inline-block;
    color: #A5A5A5;
    font-size: 12px;
    font-weight: 500;
}
.input-container .input-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    border-bottom: #A5A5A5 solid 1px;
    width: 100%;
}

.input-container .input-zip {
    display: flex;
    align-items: center;
}
.input-container .btn-search-zip {
    display: flex;
    min-width: 124px;
    margin-left: 20px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #A5A5A5;
    color: #767676;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.input-container .input-box.memo {
    border-bottom: unset;
    padding: 6px 0 0 0;
}

.input-container .input-box input{
    all: unset;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.input-container .input-box input:disabled {
    background: #FAFAFA !important;
    color: #999;
}
.custom-select {
    border: solid 1px #A5A5A5;
    width: 100%;
    height: 42px;
    user-select: none;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}
.custom-select:after {
    border-bottom: 1px solid #9F9F9F;
    border-right: 1px solid #9F9F9F;content: '';
    display: block;
    width: 10px;
    height: 10px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -5px;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
}

.bottom-sheet-cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
}
.bottom-sheet-cover.active {
    display: block;
}
.bottom-sheet-modal {
    position: fixed;
    z-index: 99999;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-screen-width);
    max-height: 97vh;
    padding-bottom: 0px;
    background: #fff;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 10%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: 0.5s ease;
    color: var(--font-color-offblack);
}

.bottom-sheet-modal.active {
    bottom: 0;
    transition: 0.5s ease;
}
.bottom-sheet-modal .handle {
    overflow: hidden;
}
.handle-icon {
    display: block;
    margin: 15px auto;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    cursor: pointer;
}

.bottom-sheet-modal .header {
    z-index: 10;
    display: flex;
    position: absolute;
    top: 34px;
    width: 100%;
    padding: 16px;
    justify-content: center;
    align-items: center;
}

.bottom-sheet-modal .header .txt-title {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
}

.bottom-sheet-modal .content-wrap {
    width: 100%;
    margin: 50px 0 10px 0;
    max-height: 100vh;
    max-height: calc(var(--iPhoneVH, 1vh) * 100 * 0.8);
    display: flex;
    flex-direction: column;
}

.bottom-sheet-modal .content-wrap .address .cont-address {
    margin: 0 8px;
    width: 100%;
}
.bottom-sheet-modal .content-wrap .address .cont-address.memo {
    padding-bottom: 4px;
}
.bottom-sheet-modal .content-wrap .address .cont-address .title {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
}
.bottom-sheet-modal .content-wrap .address .cont-address .memo {
    display: flex;
    flex-direction: column;
}
.bottom-sheet-modal .content-wrap .address .cont-address .txt-title {
    font-size: 16px;
    font-weight: 500;
}
.bottom-sheet-modal .content-wrap .option-list {
    padding: 16px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    flex: 1;
}
.bottom-sheet-modal .content-wrap .option-list .option {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-top: 14px;
    padding-bottom: 10px;
    width: 100%;
}
.bottom-sheet-modal .content-wrap .option-list .option:not(:last-child) {
    border-bottom: solid 1px #EEE;
    cursor: pointer;
}
.bottom-sheet-modal .content-wrap .option-list .option .btn-check{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    margin-right: 5px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border-radius: 10px;
    background-color: #A5A5A5;
    background-position: center;
    position: relative;
}

.bottom-sheet-modal .content-wrap .option-list .option .btn-check.checked{
    background-color: #375FFE;
}

.bottom-sheet-modal .content-wrap .option-list .option .btn-check img{
    width: 16px;
    height: 16px;
}

.bottom-sheet-modal .content-wrap .option-box {
    margin:0 8px;
    width: 100%;
}

.bottom-sheet-modal .content-wrap .txt-input {
    all: unset;
    border-bottom: 1px solid #A5A5A5;
    font-size: 16px;
    font-weight: 600;
    color: #353535;
    margin-top: 4px;
    height: 48px;
    width: 100%;
    outline: none;
}
.bottom-sheet-modal .content-wrap .txt-input::placeholder {
    color: #A5A5A5;
    font-weight: 400;
}

.bottom-sheet-modal .btn-fixed-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 30px;
    height: 56px;
    margin-top: 20px;
    padding: 0 16px;
    cursor: pointer;
}
.bottom-sheet-modal .btn-fixed-bottom .btn-save {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #000;
}
.bottom-sheet-modal .btn-fixed-bottom .txt-btn-save {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.thumbs-swiper .swiper-slide-visible {
    scale: 1;
}
.thumbs-swiper .swiper-slide-thumb-active {
    scale: 1;
    border: solid 3px #D5A367;
}
.thumbs-swiper img {
    aspect-ratio: 1/1;
}

/* login-modal */
.login-modal {
    z-index: 999;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*max-width: var(--max-screen-width);*/
    height: 100%;
    overflow-y: auto;
    background-color: transparent;
    animation-name: showUp;
    animation-duration: 0.4s;
    animation-delay: 0s;

    align-items: center;
    justify-content: center;

    overflow-y: auto;
    overscroll-behavior: none;
    padding-bottom: 1px
}
@keyframes showUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.login-modal .login-modal-backdrop{
	background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
.login-modal .login-modal-inner{
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    background: #FFF;
    color: #000;
    border: 1px solid #1A1A1A;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.20);
    width: 80%;
    height: 80%;
    max-width: 500px;
    max-height: 500px;
    position:fixed;
    padding: 20px 20px 36px 20px;
    overflow-y: auto;
    overflow-X: hidden;
}
.login-modal .header-sub {
    display: flex;
    align-items: center;
}
.login-modal .header-sub.absolute {
    position: absolute;
    z-index: 1000;
    top: 20px;
    right: 20px;
}
.login-modal .header-sub.white {
    background: #FFF;
}
.login-modal .header-sub.close {
    justify-content: flex-end;
}
.login-modal .btn-close {
    width: 14px;
    height: 14px;
    background: url(/assets/images/ico/ico-close.png) no-repeat center center;
    background-size: 14px 14px;
    cursor: pointer;
}
.login-modal .cont {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 30px;
}
.login-modal .cont .txt-title {
    word-break: keep-all;
	display: flex;
	justify-content: center;
    color: #1A1A1A;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}
.login-modal .cont .txt-desc {
    color: #767676;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding-top: 10px;
}
.login-modal .cont .txt-sub-title {
    margin-top: 16px;
    word-break: keep-all;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.login-modal .cont .input-number {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 18px 6px;
    border-bottom: #A5A5A5 solid 1px;
}
.login-modal .cont .input-number input {
    all: unset;
    font-size: 16px;
    font-weight: 600;
}
.login-modal .cont .input-number input:disabled {
    background: #FAFAFA;
    color: #999;
}
.login-modal .cont .input-number input::placeholder {
    font-size: 15px;
    font-weight: 400;
    color: #A5A5A5;
    /* font-family: "Noto Sans KR", sans-serif; */
}
.login-modal .cont .input-number .txt-timeleft {
    position: absolute;
    right: 0;
    font-size: 16px;
    font-weight: 400;
}
.login-modal .cont .btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.login-modal .cont .btn-wrap.sm {
    margin-top: 8px;
    margin-left: 10px;
}
.login-modal .cont .btn-wrap .input-check {
    display: flex;
    margin-left: 0;
    font-size: 15px;
    font-weight: 500;
    color: #A5A5A5;
    cursor: pointer;
}
.login-modal .cont .btn-wrap .input-check.highlight {
    color: #375FFE;
}
.login-modal .cont .btn-wrap .btn-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: #A5A5A5;
    background-position: center;
    margin-top: 2px;
    flex-shrink: 0;
    /*bootstrap에서 덮어씌워서 제거*/
    position:unset;
    clip:unset;
    pointer-events:unset;
}
.login-modal .cont .btn-wrap .btn-check.highlight {
    background-color: #375FFE;
}
.login-modal .cont .btn-wrap .btn-check img{
    width: 16px;
    height: 16px;
}
.login-modal .cont .btn-wrap .btn-iframe{
    display: flex;
    justify-content: center;
    margin-left: 4px;
    padding: 4px;
    border: 1px solid #A5A5A5;
    background: #FFF;
    color: #767676;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}
.login-modal .absolute-bottom {
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*position: absolute;*/
    margin-top: auto;
    max-width: var(--max-screen-width);
    padding: 30px 0 0;
    bottom: 0px;
    margin-bottom: 0;
    background: #FFF;
    /*width: 100%;*/
}
.login-modal .btn-absolute-bottom {
    display: flex;
    margin-bottom: 20px;
    /*아래 텍스트 없을 때는 margin-bottom: 30px;*/
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #000;
    cursor: pointer;
    width: 160px;
    height: 50px;
    cursor: pointer;
    border: unset;
    color: #F5F5F5;
    border-radius: unset;
    background: #201E22;
}
.login-modal .btn-absolute-bottom.cancel {
    background: #EEEEEE;
}
.login-modal .btn-absolute-bottom:active {
    transform: scale(0.98);
}
.login-modal .txt-btn-verify {
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.login-modal .txt-btn-verify.cancel {
    color: #000000;
}
.login-modal .txt-absolute-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
}
.login-modal .txt-absolute-bottom .txt-guide {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
}
/* pg_fail */
.pg-wrap {
    position: relative;
    max-width: var(--max-screen-width);
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    color: #353535;
}

.pg-wrap .container {
    height: 100%;
    overflow-y: auto;
    padding-top: 20px;
}
.pg-wrap .content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.pg-wrap .section-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40px;
    padding-left: 16px;
    color: #010101;
    height: auto
}
.pg-wrap .txt-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
}
.pg-wrap .txt-desc {
    margin-top: 8px;
    color: #767676;
    font-size: 16px;
    font-weight: 400;
}
.pg-wrap .btn-fixed-bottom {
    display: flex;
    flex-direction: column;
    width: 100%;

    max-width: var(--max-screen-width);
    padding: 0 16px;
    align-items: center;
    gap: 8px;

    position: fixed;
    bottom: 20px;
    margin-bottom: 20px;
}
.pg-wrap .btn-save {
    display: flex;
    width: 100%;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;

    cursor: pointer;
    border: 1px solid #CCC;
    background: #FFF;
    color: #000;
}
.pg-wrap .txt-btn-save {
    width: 100%;
    color: #353535;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.pg-wrap .block-calendar-preview {
    display: flex;
    flex-direction: column;
    background-color: #EEE;
    margin-top: 10px;
    padding: 16px;
}
.block-calendar-preview .preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.block-calendar-preview .preview-header .txt-title {
    font-size: 16px;
    font-weight: 500;
}
.block-calendar-preview .txt-desc {
    font-size: 14px;
    font-weight: 400;
    color: #375FFE;
    word-break: keep-all;
}
.bank-account-wrap {
    margin: 10px 0;
    padding: 16px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #FFF;
}
.bank-account-wrap .txt-cont {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
}
.bank-account-wrap .txt-cont .txt-item {
    position: relative;
    font-size: 15px;
    font-weight: 500;
}
.bank-account-wrap .txt-cont .txt-divider {
    color: #EEE;
    padding: 0 6px;
}
.bank-account-wrap .txt-cont .highlight {
    color: #375FFE;
    font-weight: 600;
}
.bank-account-wrap .btn-copy {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #CCC;
    background: #FFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* my page */
.mypage {
    background: var(--page-bg-color);
}
.mypage .mypage-container {
    width: 100%;
    /* max-width: calc(var(--max-screen-width) - (96px * 2)); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    padding-left: 84px;
    padding-right: 84px;
}
.mypage .tab-cont {
    display: flex;
}
.mypage .bottom-border {
    border-bottom: 16px solid #EEE;
}
.mypage .menu-list-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mypage .menu-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFF;
    border-bottom: 1px solid #EEE;
    padding: 0 16px;
}
.mypage .menu-list .menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}
.mypage .menu-list .menu-wrap .txt-title {
    font-size: 24px;
    font-weight: 600;
}
.mypage .menu-list .btn-detail {
    align-items: center;
    padding-left: 16px;
    color: #A5A5A5;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.mypage .menu-list .btn-detail::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #A5A5A5;
    border-right: 2px solid #A5A5A5;
    transform: rotate(-45deg);
    transform-origin: center center;
}
.mypage .menu-list .order-status {
    display: flex;
    justify-content: space-evenly;
    border: solid 2px var(--page-base1-color);
    cursor: pointer;
    background: #FFF;
}
.mypage .menu-list .order-status .status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 16px 0;
    gap: 6px;
}
.mypage .menu-list .order-status .status .txt-count {
    color: #A5A5A5;
    font-size: 36px;
    font-weight: 600;
    line-height: 34px;
}
.mypage .menu-list .order-status .status .txt-status {
    color: #A5A5A5;
    font-size: 14px;
    font-weight: 500;
}
.mypage .menu-list .order-status .status .txt-count.active {
    color: #000;
}
.mypage .menu-list .order-status .status .txt-status.active {
    color: #000;
}


.mypage .order-wrap {
	margin-top: 10px;
	padding-bottom: 16px;	
}
.mypage .order-wrap.no-margin {
	margin-top: 0;
	padding-bottom: 0;	
}
.mypage .order-wrap:not(:last-child){	
	/* border-bottom: 12px solid #EEE; */
}
.mypage .order-wrap .order {
	display: flex;
	flex-direction: column;
	padding: 12px 0;	
}
.mypage .order-wrap .title {
	position: relative;
	padding: 10px 0;	
	border-bottom: 2px solid var(--page-base1-color);
}
.mypage .order-wrap .title .txt-date {
	font-size: 16px;
	font-weight: 700;
}
.mypage .order-wrap .title .tag-gift {
	background-color: #375FFE;
	border-radius: 4px;
	margin-left: 6px;
	padding: 1px 4px;	
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
}
.mypage .order-wrap .title .btn-detail {
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	padding-left: 16px;
	font-size: 15px;
	font-weight: 500;
    line-height: 0;
    cursor: pointer;
	/* color: #353535; */
}
.mypage .order-wrap .title .btn-detail::after {
    content: "";
	display: inline-block;
	background-image: url("/assets/images/ico/ico-arrow.svg");
    transform: rotate(180deg);
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	margin: 0 0 3px 3px;
}
.mypage .order-wrap .title .txt-order-no {
	font-size: 16px;
	font-weight: 700;
}
.mypage .order-wrap .title .txt-order-date {
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
    color: #A5A5A5;
    font-size: 14px;
    font-weight: 500;
}
.mypage .order-wrap .order .status {
	display: flex;
	align-items: center;
}
.mypage .order-wrap .order .status .txt-status {
	color: #353535;
	font-size: 16px;
	font-weight: 600;
}
.mypage .order-wrap .order .status .txt-status.highlight {
	color: #375FFE;
	font-weight: 700;
}
.mypage .order-wrap .order .status .txt-status.danger {
	color: #FF2525;
	font-weight: 700;
}
.mypage .order-wrap .order .status .txt-date {
	margin-left: 8px;
	color: #A5A5A5;
	font-size: 14px;
	font-weight: 500;
}
.mypage .order-wrap .order .status .txt-date.highlight {
	margin-left: 4px;
	color: #375FFE;
}
.mypage .order-wrap .order .status .txt-date.active {
	color: #767676;
}
.mypage .order-wrap .order .info {
	display: flex;
	align-items: flex-start;
	padding: 8px 0;	
	min-height: 64px;
}
.mypage .order-wrap .order .info.border-bottom {
	border-bottom: solid 1px #EEE;
}
.mypage .order-wrap .option:not(:last-child){	
	border-bottom: solid 1px #A5A5A5;
}
.mypage .order-wrap .order .info .img-preview {
	/* margin-top: 5px; */
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
}
.mypage .order-wrap .order .info .img-preview.no-margin {
	margin-top: 0;
}
.mypage .order-wrap .order .info .img-preview.active {
	width: 102px;
	height: 102px;
	min-width: 102px;
	min-height: 102px;
}
.mypage .order-wrap .order .info .img-preview img {
	width: 100%;
    height: 100%;
	object-fit: cover;
	border-radius: 2px;
}
.mypage .order-wrap .order .info .img-preview.no-image {
	border: 1px solid #A5A5A5;	
	border-style: dashed;
	border-radius: 2px;
	background-color: #EEE;
}
.mypage .order-wrap .order .info .txt-cont {
	padding-top: 2px;
	height:100%;
	width: calc(100% - 96px);
    margin-left: 16px;
}
.mypage .order-wrap .order .info .txt-cont .txt-title {
	margin-bottom: 4px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 600;
}
.mypage .order-wrap .order .info .txt-cont .txt-title.active {
	color: #000;
	font-size: 14px;
	font-weight: 700;
}
.mypage .order-wrap .order .info .txt-cont .txt-detail {
	color: #A5A5A5;
	font-size: 14px;
	font-weight: 500;
}
.mypage .order-wrap .order .info .txt-cont .txt-detail.danger {
	color: #FF2525;
}
.mypage .order-wrap .order .info .txt-cont .txt-detail.danger a {
	color: #FF2525;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.mypage .order-wrap .order .info .txt-cont .txt-price {
	margin-top: 4px;
	font-size: 16px;
	font-weight: 600;
}
.mypage .order-wrap .order .info .txt-cont .txt-price .divider {
	color: #EEE;
	padding: 0 6px;
	border-bottom: none;
}
.mypage .order-wrap .order .info .txt-cont .txt-price .highlight {
	font-size: 16px;
	font-weight: 600;
}
.mypage .order-wrap .order .info .txt-cont .txt-detail .txt-stat {
	margin-left: 4px;
	color: #375FFE;
	font-size: 14px;
	font-weight: 700;
}
.mypage .order-wrap .order .txt-desc {
	margin-top: 8px;
	display: flex;	
	align-items: center;
	font-size: 14px;
	line-height: 24px;
}
.mypage .order-wrap .order .reward {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
	margin-bottom: 12px;
	width: 100%;
	font-size: 14px;
	text-align: center;
	line-height: 22px;
}
.mypage .order-wrap .order .reward.border {
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	padding: 4px 0;
}
.mypage .order-wrap .order .reward.no-margin {
	margin: 0;
}
.mypage .order-wrap .order .rating {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
	width: 100%;
}
.mypage .order-wrap .order .rating .txt-title {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #000;	
	font-size: 16px;
	font-weight: 700;
}
.mypage .order-wrap .order .rating .star-rating {
	margin-top: 4px;
	color: #000;	
	font-size: 36px;
	font-weight: 700;
}
.mypage .order-wrap .order textarea {
	width: 100%;
	height: 100px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #A5A5A5;
	color: #353535;
	font-size: 14px;
	font-weight: 400;
	font-family: "Noto Sans KR", sans-serif;
}
.mypage .order-wrap .order .btn-upload {
	display: flex;
	flex-direction: column;
	height: 56px;
	width: 100%;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: 1px solid #CCC;
	background: #FFF;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.mypage .order-wrap .order .btn-upload.bg-highlight {	
	background-color: rgba(55, 95, 254, 0.10);
	border: 1px solid #375FFE;
	color: #375FFE;
}
.mypage .order-wrap .order .btn-upload .txt-desc {	
	display: inline;
	font-size: 12px;
	font-weight: 400;
	color: #375FFE;
	line-height: 12px;
	margin: 4px;
}
.mypage .order-wrap .order .divider {	
	margin: 16px 0 2px 0;
	border-bottom: 1px solid #EEE;
}
.mypage .order-wrap .cont {
	padding: 16px 0 0 0;	
}
.mypage .order-wrap .cont .txt-row {
	margin-bottom: 10px;
	display: flex;
}
.mypage .order-wrap .cont .txt-row.space-between {
	justify-content: space-between;
}
.mypage .order-wrap .cont .txt-row.align-center {
	align-items: center;
}
.mypage .order-wrap .cont .txt-row.no-margin {
	margin-bottom: 0;
}
.mypage .order-wrap .cont .txt-title {
	min-width: 80px;
	color: #767676;
	font-size: 14px;
	font-weight: 500;
}
.mypage .order-wrap .cont .txt-title.full-width {
	width: 100%;
}
.mypage .order-wrap .cont .txt-title.sum {
	color: #000;	
	font-size: 16px;
	font-weight: 500;
}
.mypage .order-wrap .cont .txt-cont {
	color: #000;
	font-size: 14px;
	font-weight: 600;
    width: 100%;
}
.mypage .order-wrap .cont .txt-cont .txt-addr {
	color: #767676;
	font-size: 13px;
	font-weight: 500;
}
.mypage .order-wrap .cont .txt-price {
	color: #000;	
	text-align: right;
	font-size: 14px;
	font-weight: 700;
    width: 100%;
}
.mypage .order-wrap .cont .txt-price.sum {
	font-size: 20px;
}
.mypage .order-wrap .cont .txt-price .txt-ship {
	color: #767676;
	font-size: 13px;
	font-weight: 500;
}
.mypage .order-wrap .sum {
	position: relative;
	padding: 6px 0;
}
.mypage .order-wrap .sum .txt-sum {
	margin-top: 6px;
	font-size: 16px;
	font-weight: 700;
}
.mypage .order-wrap .sum .txt-sum .highlight {
	color: #375FFE;
}
.mypage .order-wrap .btn-wrap {
	display: flex;
	justify-content: space-between;
	gap: 8px;
}
.mypage .order-wrap .btn-wrap .btn {
	width: 100%;
	display: flex;	
	align-items: center;
	justify-content: center;	
	padding: 10px 0;
	font-size: 16px;
	font-weight: 500;
	color: #353535;
	border-radius: 0;
	border: 1px solid var(--page-base1-color);;
	cursor: pointer;
}
.mypage .order-wrap .btn-wrap .btn.highlight {
	/* color: #375FFE; */
	font-weight: 600;
    /* background: var(--page-base1-color); */
     background: color-mix(in srgb, var(--page-base1-color) 30%, transparent);
}
.mypage .order-wrap .btn-wrap .btn.bg-highlight {
	background-color: var(--page-base1-color);
	border: 1px solid var(--page-base1-color);
	color: #FFF;
}
.mypage .order-wrap .btn-wrap .btn-save {
	display: flex;
	height: 56px;
	width: 100%;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background: #000;
	cursor: pointer;
}
.mypage .order-wrap .btn-wrap .txt-btn-save {
	width: 100%;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}

.mypage .mypage-footer {
    width: 100%;
    padding: 30px 20px;
}
.mypage .btn-logout {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 10px;
    border: 1px solid #CCC;
    cursor: pointer;
}
.mypage .txt-logout {
    font-size: 18px;
    font-weight: 500;
}
.mypage .btn-back {
    margin: 20px 0;
	font-size: 15px;
	font-weight: 500;
    line-height: 0;
    cursor: pointer;
	/* color: #353535; */
}
.mypage .btn-back::before {
    content: "";
	display: inline-block;
	background-image: url("/assets/images/ico/ico-arrow.svg");
	background-size: 12px 12px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	margin: 0 3px 3px 0;
}
.edit-modal {
    width: 100%;
    position: relative;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.8);
}
.edit-modal .title {
    position: fixed;
    top: 26px;
    color: #FFF;
    font-weight: 400;
    font-size: 18px;
}
.edit-modal .cancel {
    position: fixed;
    top: 27px;
    left: 30px;
    color: #FFF;
    font-weight: 300;
    font-size: 16px;
    cursor: pointer;
}
.edit-modal .save {
    position: fixed;
    top: 27px;
    right: 30px;
    color: #FFF;
    font-weight: 300;
    font-size: 16px;
    cursor: pointer;
}
.edit-modal .edit-input {
    all:unset;
    width: calc(100% - 120px);
    height: 40px;
    padding: 0 30px 0 10px;
    margin-bottom: 120px;
    color: #FFF;
    text-align: center;
    font-family: 'NanumSquare';
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    background: transparent;
    border-bottom: 1px solid #FFF;
}
.edit-modal .edit-input::placeholder {
    color: #868686;
    font-weight: 300;
    font-size: 16px;
}
.edit-modal .btn-delete {
    position: absolute;
    left: calc(100% - 70px);
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    padding: 0 10px;
    background: #FFF;
    border-radius: 25px;
    background-image: url("/assets/images/ico/ico-edit-delete.png");
    background-position: 50% 50%;
    background-size: 12px;
    background-repeat : no-repeat;
    background-color: #667085;
}
.edit-modal .desc {
    position: absolute;
    display: flex;
    justify-content: center;
    color: #FFF;
    width: calc(100% - 100px);
    margin-bottom: 0px;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-count {
    color: var(--page-point2-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
}
.review-count.underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.review-cont {
	display: flex;
	height: 150px;
	padding: 16px 0;
}
.review-cont.d-flex-column {
	flex-direction: column;
}
.review-cont.list {
	height: auto;
	border-bottom: solid 1px #EEE;
	display: flex;
	flex-direction: column;
}
.review-cont .img-wrap {
	margin-top: 10px;
	display: flex;
	gap: 10px;
    overflow: auto;
}
.review-cont .img-wrap img {
	width: 100px;
	height: 100px;
	min-width: 100px;
	min-height: 100px;
	object-fit: cover;
	border-radius: 0;
}
.review-cont .full-img-wrap  {
	margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-cont .full-img-wrap img {
	width: 100%;
	border-radius: 10px;
}
.review-cont .review-cont-txt {
	margin-left: 16px;
    display: flex;
    flex-direction: column;
}
.review-cont .review-cont-txt.no-margin {
	margin-left: 0;
}
.review-cont .review-cont-txt .review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.review-cont .review-cont-txt .review-header .tag-best {
	display: inline-flex;
	padding: 6px 8px;
	border-radius: 6px;
	background-color: #375FFE;
	color: #FFF;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
}
.review-cont .review-cont-txt .rating {
    width: 100%;
    transform-origin: 0 50%;
    scale: 0.4;
}
.review-cont .review-cont-txt .star-rating {
    pointer-events: none;
    display: flex;
	height: 18px;
	font-size: 12px;
}
.review-cont .review-cont-txt .star-rating img {
    height: 100%;
	width: auto;
}
.review-cont .review-cont-txt .txt-cont {
	display: flex;
	flex-direction: column;
}
.review-cont .review-cont-txt .txt-review {
	color: #000;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;

    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.review-cont .review-cont-txt .txt-review.full-txt {
	color: #000;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.review-cont .review-cont-txt .txt-info {
	margin-top: 8px;
	color: #767676;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
}
.review-all {
	display: flex;
	flex-direction: column;
}

.fixed-bottom-btn-top {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 28px;
    border: solid 1px #FFF;
    background-color: #A5A5A5;
    padding: 12px;
    bottom: 68px;
    right: 20px;
}
.full-screen-image-wrap {
    width: 100%;
    height: 100%;
    position:fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
}
.full-screen-image-wrap .full-screen-image-inner {
    max-width: 80%;
    max-height: 80%;
    width: 80%;
    height: 80%;
}
.full-screen-image-wrap .full-screen-image-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 24px;
    height: 24px;

    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M2 2L14 14M14 2L2 14' stroke='black' stroke-width='2'/%3e%3c/svg%3e")
    center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M2 2L14 14M14 2L2 14' stroke='black' stroke-width='2'/%3e%3c/svg%3e")
    center/contain no-repeat;

    background-color: #FFF;
    border-radius: 4px;
}

.full-screen-image-inner {
    width: 100%;
    height: 100vh; /* 전체 화면 높이 */
}

.login-modal-inner.vasak_son_inner {
    width: min(90vw, 90vh * (500 / 856), 500px);
    aspect-ratio: 500 / 856;
    max-height: unset;
    height: unset;
    max-width: unset;
    color: #FFF;
    background-color: #000;
    font-family: Pretendard Variable;
}

.login-modal-inner.vasak_son_inner.white {
    color: #000;
    background-color: #FFF;
}

.login-modal-inner.vasak_son_inner img{
    width:100%;
    height:100%;
}
.vasak_son_inner .vasak_son_background{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vasak_son_inner .vasak_son_button_box {
    margin-top:auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.vasak_son_button_box .vasak_son_btn {
    background-color: #1A1A1A;
    color: #fff;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.vasak_son_inner .vasak_son_btn.brown {
    background-color: #BD9171;
}

.vasak_son_inner .vasak_son_btn .txt-btn-verify {
    font-family: Pretendard Variable;
    font-size: 16px;
    font-weight: 600;
}
.vasak_son_inner .vasak_son_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
    background-color: #1A1A1A;
}

.vasak_son_inner .checkbox {
    cursor: pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.time-select-wrap {
    display: flex;
    flex-wrap: wrap;
}

.time-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    color: #D9D9D9;
    font-size: 16px;
    position: relative;
}

/* 실제 라디오 버튼은 숨김 */
.time-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* 선택되었을 때 스타일 */
.time-option input[type="radio"]:checked + span {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* 텍스트를 박스처럼 채우기 위한 span 스타일 */
.time-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

    font-size: 16px;
    font-weight: 600;
}
