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