/* body */
html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

html:-webkit-scrollbar {
    display: none;
}

body {
    overflow-x: clip;
    background-color: var(--black);
}

main {
    width: 100%;
}

main .inner {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.inner h1 {
    margin-bottom: 40px;
    color: var(--white);
}

.inner h2 {
    margin-bottom: 40px;
    color: var(--white);
}

/* header */
header {
    width: 100%;
    height: 100px;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: .35s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    display: block;
    font-weight: 500;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-up {
    top: -100px;
    transition: .45s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.btn-ham {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9999;
    display: none;
}

.btn-ham img {
    width: 28px;
}

.ham-toggle-img-02 {
    display: none;
}

/* main */
.main {
    width: 100%;
    height: 110vh;
    padding-top: 160px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main .inner {
    text-align: center;
    position: relative;
    z-index: 55;
}

.main .inner h1 {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px;
    text-shadow: 0px 0px 30px var(--black);
}

.main .inner h5 {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-shadow: 0px 0px 30px var(--black);
}

.inner h5 b {
    color: var(--white);
    color: var(--primary);
    font-size: inherit;
    font-weight: inherit;
}

.main-bg-wp {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.main-bg {
    width: 100%;
    position: relative;
    z-index: 44;
    height: 760px;
    overflow: hidden;
}

.bg-main {
    opacity: .5;
    animation: 2s linear infinite alternate mCir;
    /* transform: scale(.6); */
    max-width: 100%;
}

.main-bg-net {
    width: 100%;
    height: calc(100% - 760px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    animation: 25s linear infinite alternate maskRote;
    opacity: .7;
}

.main .bg-net-layout {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../images/bg_network.png)no-repeat center center / cover;
    opacity: .5;
}

.main .bg-net-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../images/bg_network_b.png)no-repeat center center / cover;
    animation: 3s linear infinite alternate maskFade;
    opacity: 0;
}

.main .bg-net-line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../images/bg_network_a.png)no-repeat center center / cover;
    animation: 1s ease-in-out infinite alternate maskFade;
    opacity: 0;
}

@keyframes maskRote {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

@keyframes maskFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mCir {
    0% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

.main-bg .main-bg-back {
    animation: 2s linear infinite alternate mGr;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
}

@keyframes mGr {
    0% {
        height: 500px;
    }

    20% {
        height: 450px;
    }

    40% {
        height: 430px;
    }

    80% {
        height: 480px;
    }

    100% {
        height: 450px;
    }
}

.main-bg .main-bg-front {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.main-bg-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 55;
    overflow: hidden;
}

.main-bg-mask ul {
    position: relative;
    width: 100%;
    height: 100%;
    animation: 70s linear infinite alternate maskRote;
    display: none;
}

@keyframes maskRote {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(10deg);
    }
}

.main-bg-mask ul li {
    width: fit-content;
}

.main-bg-mask ul li:nth-child(1) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 0s;
    position: absolute;
    top: 20%;
    left: 20%;

}

.main-bg-mask ul li:nth-child(2) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 2s;
    position: absolute;
    top: 10%;
    left: 10%;

}

.main-bg-mask ul li:nth-child(3) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 4s;
    position: absolute;
    bottom: 40%;
    left: 10%;

}

.main-bg-mask ul li:nth-child(4) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 0s;
    position: absolute;
    top: 30%;
    right: 10%;

}

.main-bg-mask ul li:nth-child(5) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 6s;
    position: absolute;
    top: 10%;
    right: 20%;

}

.main-bg-mask ul li:nth-child(6) {
    animation: 4s linear infinite alternate bounceIcon;
    animation-delay: 0s;
    position: absolute;
    bottom: 30%;
    right: 25%;

}

@keyframes bounceIcon {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
        opacity: .45;
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.7);
    }
}

.main-bg-mask img {
    max-width: 46px;
    filter: brightness(100);
    opacity: .5;
}


/* company */
.company {
    position: relative;
    z-index: 555;
}

.company h5 {
    max-width: 100%;
    margin: 0 auto;
}


.company .inner {
    text-align: center;
}

.logo-loop {
    margin-top: 80px;
    overflow: hidden;
    width: 100%;
    display: flex;
    gap: 0;
    position: relative;
    z-index: 3;
}

.logo-loop ul {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

.logo-loop li {
    width: 160px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
    padding: 0px 10px;
}

.logo-loop li img {
    width: 100%;
    filter: grayscale(100);
    opacity: .7;
}

@keyframes logoLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-loop ul {
    display: flex;
    white-space: nowrap;
}


.company-bg {
    margin-top: -100px;
}

.company-value {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1240px;
    width: 100%;
    height: 420px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 120px;
    position: relative;
    z-index: 555;
}

.val-box {
    padding: 40px 20px;
    border-radius: 28px;
    border: 1px solid var(--gray-900);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 55;
    width: calc(100% / 3 - 40px / 3);
    background-color: var(--black);
}

.val-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 200px;
    z-index: -1;
    transition: var(--transition);
}

.val-box:nth-child(1) .val-img {
    transform: scale(2);
}

.val-box:nth-child(2) .val-img {
    right: 20%;
    bottom: -20%;
}

.val-box:nth-child(3) .val-img {
    bottom: unset;
    top: -50%;
}

.val-box:nth-child(4) .val-img {
    left: 0%;
    bottom: -30%;
    right: unset;
}

.val-box:nth-child(5) .val-img {
    left: -20%;
    right: unset;
    top: -60%;
    bottom: unset;
}

.val-img img {
    width: 300px;
    max-width: 300px;
    opacity: .5;
    transition: var(--transition);
}

.val-box:hover .val-img img {
    opacity: .7;
}

.val-box h5 {
    font-size: var(--title-03);
    color: var(--white);
    margin-bottom: 8px;
}

.gr-bg.company-bg::before {
    z-index: -1;
}

/* business */
.business .inner {
    text-align: center;
}

.business .inner h5 {
    max-width: 940px;
    margin: 0 auto;
}

.inner.business-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 120px;
    overflow: hidden;
}

.business-item {
    width: calc(100% / 3 - 40px * 2 /3);
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--gray-900);
    border-radius: 28px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: linear-gradient(332deg, rgba(40, 170, 217, 0) 0%, rgba(40, 170, 217, .25) 100%);
    transition: var(--transition);
}

.business-item:hover {
    background: linear-gradient(332deg, rgba(40, 170, 217, 0) 0%, rgba(40, 170, 217, .4) 100%);
}


.business-item .ic-b {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 2px;
    background-color: var(--gray-800);
    border-radius: 16px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.ic-b img {
    width: 90%;
    max-width: 46px;
    margin: 0 auto;
}

.business-item:hover span {
    box-shadow: var(--box-shadow-sm);
}

.business-item:hover h5,
.business-item:hover p {
    color: var(--white);
}

.business .inner .business-item h5 {
    margin-bottom: 20px;
    transition: var(--transition);
}

.business .inner .business-item p {
    max-width: 80%;
    margin: 0 auto;
    transition: var(--transition);
}

/* master */
.master {
    padding-top: 200px;
    margin-bottom: 200px;
}

.master .inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.master .inner h5 {
    max-width: 800px;
}

.master-swiper {
    margin: 0 auto;
    margin-top: 80px;
}

.master-swiper .swiper {
    width: 100%;
    height: fit-content;
    padding-bottom: 20px;
    padding-left: calc((100% - 1200px) / 2);
}

.master .master-swiper {
    padding-right: 0;
    position: relative;
}

.master-swiper .swiper-slide {
    width: 380px;
    height: fit-content;
    margin-right: 40px;
    cursor: pointer;
}

.master-swiper .slide-img {
    width: 100%;
    /* height: 240px; */
    border-radius: 28px;
    overflow: hidden;
}

.slide-img img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.slide-img:hover img {
    transform: scale(1.2);
}

.master .master-swiper h5 {
    margin: 20px 0;
    padding: 0 20px;
    font-size: inherit;
    color: var(--gray-500);
    transition: var(--transition);
}

.swiper-slide:hover h5 {
    color: var(--white);
}

.master-swiper h5 span {
    color: var(--white);
    font-size: var(--title-01);
    letter-spacing: .75px;
    transition: var(--transition);
}

.master-swiper h5 span b {
    color: var(--white);
    font-size: var(--title-02);
    transition: var(--transition);
}

.master-swiper .swiper-slide:hover h5 span b {
    color: var(--primary);
}

.master-swiper .swiper-slide:nth-child(1) .slide-img {
    box-shadow: 0 2px 20px -5px #FF47AD;
}

.master-swiper .swiper-slide:nth-child(2) .slide-img {
    box-shadow: 0 2px 20px -5px #FFD200;
}

.master-swiper .swiper-slide:nth-child(1) .slide-img {
    box-shadow: 0 2px 20px -5px #0BD588;
}

.master-swiper .swiper-slide:nth-child(2) .slide-img {
    box-shadow: 0 2px 20px -5px #2BC9CC;
}

.master-swiper .swiper-slide:nth-child(3) .slide-img {
    box-shadow: 0 2px 20px -5px #26B0F1;
}

.master-swiper .swiper-slide:nth-child(6) .slide-img {
    box-shadow: 0 2px 20px -5px #A54DBB;
}

.master-swiper .swiper-slide:nth-child(1) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #FF47AD;
}

.master-swiper .swiper-slide:nth-child(2) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #FFD200;
}

.master-swiper .swiper-slide:nth-child(1) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #0BD588;
}

.master-swiper .swiper-slide:nth-child(2) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #2BC9CC;
}

.master-swiper .swiper-slide:nth-child(3) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #26B0F1;
}

.master-swiper .swiper-slide:nth-child(6) .slide-img:hover {
    box-shadow: 0 2px 25px -2px #A54DBB;
}

.master-swiper .swiper-slide p {
    transition: var(--transition);
    padding: 0 20px;
}

.master-swiper .swiper-slide:hover p {
    color: var(--white);
}

.master-swiper .swiper-scrollbar {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: var(--gray-800);
    height: 4px;
    opacity: 1 !important;
}

.master-swiper .swiper-scrollbar-drag {
    background-color: var(--primary);
}


/* service01 */
.service01 {
    padding-top: 260px;
    padding-bottom: 260px;
    position: relative;
}

.service01::after {
    position: absolute;
    left: 0;
    top: -100px;
    width: 100vw;
    height: 800px;
    background: url(../images/bg_wave.png)no-repeat left top / contain;
    content: '';
    z-index: -1;
    opacity: .6;
}

.service01 .inner {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

/* insite */
.insite {
    padding: 140px 0;
    margin: 0 60px;
    background-color: #131313;
    background-color: #63636367;
    border-radius: 4rem;
    width: calc(100% - 120px);
}

.inner.insite-pallerex {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.inner h2.insite-total-tit {
    margin-bottom: 120px;
    text-align: center;
}

.insite-tit-wp h2 {
    font-size: var(--title-display-02);
    margin-bottom: 40px;
}

.insite-tit-wp h5 {
    margin: 0 auto;
    max-width: 80%;
}

.pall-img {
    width: 500px;
    height: 300px;
    background: url(../images/img_01.jpg)no-repeat center center / cover;
    flex-shrink: 0;
    position: sticky;
    top: 30vh;
    border-radius: 4px;
    transition: border-radius .5s ease;
    box-shadow: 0 3px 5px -2px rgba(40, 170, 217, 0.5);
    overflow: hidden;
}

.pall-txt {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.pall-txt li {
    width: calc(100%/3 - 160px/3);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: 0;
}

.pall-txt h5 {
    padding: 0 16px 0 4px;
    background-color: var(--gray-900);
    font-size: var(--title-03);
    margin-bottom: 20px;
    color: var(--white);
    width: fit-content;
    position: relative;
}

.pall-txt .last-order h5 {
    width: 100%;
}

.pall-txt h5 span {
    font-size: var(--title-display-03);
    color: var(--primary);
    transition: var(--transition);
}

.pall-txt li::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 27px;
    background-color: var(--gray-700);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

li.fst-order::after {
    display: none;
}

.pall-txt p {
    max-width: 600px;
    font-size: var(--body-01);
    transition: var(--transition);
    color: var(--gray-700);
}

.pall-txt li:hover p {
    color: var(--white);
}

.insite-pallerex:has(li:hover) .pall-txt li:not(li:hover) {
    opacity: .7;
}

.img-insite-small {
    width: 40px;
    display: inline-block;
    margin-left: 10px;
}

.pall-txt {
    position: relative;
}

.pall-txt::after {
    content: '';
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed var(--gray-700);
    z-index: -1;
}

.pall-txt-2 {
    padding-left: 24px;
}


/* sauce */
.sauce {
    padding-top: 0px;
    padding-bottom: 200px;
    position: relative;
}

.sauce-bg-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    display: flex;
}

.sauce-bg-mask ul li {
    border-radius: 50px;
    aspect-ratio: 1 / 1;
    background: url(../images/img_01.jpg)no-repeat center center / cover;
    background-color: var(--gray-400);
    overflow: hidden;
    position: absolute;
    z-index: 666;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(1) {
    background: url(../images/img_bg_02.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(2) {
    background: url(../images/img_bg_04.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(3) {
    background: url(../images/img_bg_13.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(1) {
    background: url(../images/img_bg_07.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(2) {
    background: url(../images/img_01.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(3) {
    background: url(../images/img_bg_14.jpg)no-repeat center center / cover;
}

.sauce-bg-mask ul {
    width: 50%;
    position: relative;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(1) {
    width: 130px;
    bottom: 5%;
    left: 10%;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(2) {
    width: 160px;
    bottom: 30%;
    left: 30%;
}

.sauce-bg-mask ul:nth-child(1) li:nth-child(3) {
    width: 140px;
    bottom: 10%;
    right: 20%;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(1) {
    width: 130px;
    bottom: 5%;
    right: 10%;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(2) {
    width: 160px;
    bottom: 30%;
    right: 30%;
}

.sauce-bg-mask ul:nth-child(2) li:nth-child(3) {
    width: 140px;
    bottom: 10%;
    left: 20%;
}

.sauce .inner {
    text-align: center;
    position: relative;
    z-index: 55;
}

.sauce .inner h5 {
    max-width: 80%;
    margin: 0 auto;
}

.sauce button {
    margin-top: 40px;
}

/* service02 */
.service02 {
    /* margin-top: 200px; */
    padding: 160px 0 300px 0;
    z-index: 5;
    position: relative;
    margin-bottom: -140px;
    background: url(../images/img_02.jpg)no-repeat center center / cover;
    background-attachment: fixed;
}

.service02 .inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.service02::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black-op);
    content: '';
    z-index: 1;
}

.service02 h5 {
    max-width: 850px;
}

/* footer */
footer {
    padding: 100px 60px 60px 60px;
    border-radius: 120px 120px 0 0;
    background: url(../images/bg_footer.png)no-repeat bottom center / cover;
    background-color: var(--black);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.footer-logo {
    filter: grayscale(100);
    opacity: .7;
    width: 230px;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-menu a:hover {
    color: var(--primary);
}

.btn-top {
    min-width: auto;
    height: auto;
    padding: 8px 24px;
    font-size: var(--title-subtitle-01);
}

.footer-info {
    max-width: 60%;
}

.footer-info span {
    color: var(--gray-400);
    display: inline-block;
    font-size: var(--body-01);
}

.footer-copy {
    color: var(--gray-600);
    font-size: var(--body-01);
}


/* button icon */
.btn-outline.icon {
    padding-right: 40px;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-outline.icon::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../images/ic_btn_arrow.svg)no-repeat center center / contain;
    content: '';
    transition: var(--transition);
}

.btn-outline.icon:hover::after {
    top: 45%;
    right: 6px;
}


/* gradient background */
.gr-bg {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gr-bg::before {
    animation: 2s linear infinite alternate bgGr;
    content: '';
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, rgba(40, 170, 217, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

@keyframes bgGr {
    0% {
        height: 500px;
    }

    20% {
        height: 450px;
    }

    40% {
        height: 430px;
    }

    80% {
        height: 480px;
    }

    100% {
        height: 450px;
    }
}

.gr-bg::after {
    content: '';
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: url(../images/bg_ellipse.svg)no-repeat top center / cover;
}

/* floating */
.floating-wp {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    bottom: 40px;
    right: 3%;
    z-index: 888;
}

a.btn-floating {
    width: fit-content;
    min-width: 320px;
    height: 70px;
    border-radius: 40px;
    background: url(../images/ic_btn_arrow.svg)no-repeat top 6px right 8px / 2rem;
    background-color: var(--bg-black-op);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid var(--primary);
    box-sizing: border-box;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

a.btn-floating:hover {
    box-shadow: var(--box-shadow-lg);
    background: url(../images/ic_btn_arrow.svg)no-repeat top 6px right 8px / 0;
    background-color: var(--bg-black-op);
    min-width: 200px;
}

a.btn-floating span {
    color: var(--primary);
    width: 100%;
    white-space: nowrap;
    height: 70px;
    border-radius: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--body-02);
    transition: var(--transition);
    font-weight: 500;
}

a.btn-floating:hover span {
    color: var(--primary);
}

a.btn-floating span.in-txt-02 {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

a.btn-floating:hover span.in-txt-02 {
    display: block;
    height: 70px;
    line-height: 70px;
    overflow: initial;
}

a.btn-floating span.in-txt-01 {
    transition: var(--transition);
}

a.btn-floating:hover span.in-txt-01 {
    height: 0;
    overflow: hidden;
}

/* jmbr-type */
.jmbr-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.jmbr-type::after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed var(--gray-600);
}

.jmbr-type .business-item {
    /* aspect-ratio: 1 / 1; */
    max-width: 300px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #282828;
}

.jmbr-type .business-item .ic-b {
    background: linear-gradient(332deg, rgba(40, 40, 40, 1) 0%, rgb(23, 129, 168) 100%);
    width: 48px;
    height: 48px;
    padding: 10px;
    margin-bottom: -8px;
}

.ic-b img {
    width: 100%;
}

.ic-b.ic-paper img {
    max-width: 22px;
}

.jmbr-type .business-item:hover span {
    box-shadow: none;
}

/* modal */
.modal-wp {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    display: none;
}

.modal-wp.active{
    display: flex;
}
html:has(.modal-wp.active) {
    overflow: hidden;
}

.modal {
    max-width: 1200px;
    width: fit-content;
    text-align: center;
    padding: 30px 20px 40px 20px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: var(--transition);
    max-height: 90vh;
}


.btn-close {
    width: 40px;
    height: 40px;
    background-color: transparent;
    background: url(../images/ic_close.svg)no-repeat center center / 24px;
    border: 1px solid var(--gray-900);
    border-radius: 12px;
    transition: var(--transition);
}

.btn-close:hover,
.btn-close:focus,
.btn-close:focus-visible {
    outline: none;
    background-color: var(--gray-900);
}

.modal h1 {
    font-size: var(--title-display-01);
    text-align: left;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-con {
    height: calc(90vh - 140px);
    overflow-y: auto;
    font-size: var(--body-01);
    text-align: left;
}

.modal-con b {
    font-size: var(--body-01);
    margin: 10px 0 5px 0;
    display: block;
}

.modal-con::-webkit-scrollbar {
    width: 10px;
}

.modal-con::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.modal-con::-webkit-scrollbar-track {
    background-color:var(--gray-800);
    border-radius: 10px;
}