.section_01 {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0rem 0 0 0;
}

.section_01_block {
    margin: 0rem 0 0 0;
    padding: 15rem 0 0 0;
    overflow: hidden;
    position: relative;
}

.section_01_item {
    width: 100vw;
    padding: 0.7rem 4rem;
    text-align: center;
    text-wrap: balance;
    word-break: keep-all;
    color: var(--color-white);
}

.section_01_wrap {
    padding: 1.5rem 4rem 0 4rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_01_release {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    max-width: calc(var(--width-max-section) * 0.6);
    padding: 0.2em 0.3rem 0.2em 0.3rem;
    background-color: var(--color-white);
    border-radius: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.section_01_button {
    width: 100vw;
    padding: 2rem 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.feature-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bullet-text {
    display: block;
    position: relative;
    line-height: 1.5;
    word-break: keep-all;
}

.mockup {
    position: relative;
    width: 100%;
    padding: 2rem;
}

.monitor {
    background: #101010 none repeat scroll 0 0;
    border: 0px solid #cfcfd4;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    border-bottom: 4vw solid #cfd0d3;
    max-width: calc(var(--width-max-section) * 1.2);
    margin: 0 auto;
    margin-top: 2rem;
    padding: 2vw;
}

.monitor_stand {
    background-clip: border-box;
    background-color: transparent;
    background-image: url('/assets/monitorstand.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-width: calc(var(--width-max-section) * 0.9);
    margin: 0 auto;
    height: 12vw;
}

ul.monitor li {
    height: 40vw;
    background: #212121 none repeat scroll 0 0;
    border-radius: 1rem;
    color: var(--color-gray);
    padding: 20%;
    text-align: center;
    background-image: url('/assets/solution_001.png');
    background-repeat: no-repeat;
    background-clip: border-box;
    background-size: cover;
}

@media (max-width: 768px) {
    .section_01_wrap {
        padding: 0rem 1rem;
    }

    .section_01_block {
        margin: 0rem 0 0 0;
        padding: 9rem 0 0 0;
        overflow: hidden;
    }

    .section_01_item {
        padding: 0.7rem 2rem;
    }

    .section_01_button {
        padding: 2rem 2rem;
    }

    .section_01_release {
        border-radius: 1rem;
        padding: 1rem 0.5rem;
        background-color: var(--color-white);
    }

    .mockup {
        padding: 1rem 2rem;
    }

    .monitor {
        margin-top: 0rem;
    }
}

.grid {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 4rem 2rem 10rem 2rem;
    transform: perspective(1560px) rotateX(10deg);
    transform-origin: bottom;
}

.grid_wrap {
    position: relative;
    width: 100%;
    max-width: calc(var(--width-max-section) * 1.05);
    margin: 0 auto;
}

.grid_first {
    position: relative;
    width: 98%;
    height: 100%;
    min-height: 920px;
    border-radius: 1rem;
    background-color: var(--color-white);
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_first_box {
    position: relative;
    width: 33%;
    max-width: 470px;
    height: 100%;
    padding: 8rem 1rem 4rem 4rem;
    word-break: keep-all;

    span {
        display: block;
    }
}

.grid_first_box img {
    height: calc(var(--height-navItem) * 1.8);
}

.button_area {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

.grid_second {
    position: absolute;
    top: 0;
    right: -28px;
    margin: 7.5rem 0;
    width: 68%;
    height: 100%;
}

.grid_second_box {
    display: grid;
    grid-gap: 20px 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        'a b c'
        'a d e'
        'a f g';
}

.grid_second_1 {
    grid-area: a;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_2 {
    grid-area: b;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_3 {
    grid-area: c;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_4 {
    grid-area: d;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_5 {
    grid-area: e;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_6 {
    grid-area: f;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.grid_second_7 {
    grid-area: g;
    display: flex;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 1rem;
    background-color: rgba(227, 227, 227, 0.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.cardItem {
    margin: 0;
    padding: 2rem;
    height: 100%;
    min-height: 230px;
    display: flex;
    word-break: keep-all;

    span {
        display: block;
    }
}

.cardItem .fw_700 {
    text-wrap: balance;
}

@media (max-width: 768px) {
    .cardItem {
        padding: 2rem 1.5rem;
    }
}

.cardTop {
    width: 100%;
    margin: 0;
    padding: 0;
}

.cardButton {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: none;
}

.cardIcon img {
    height: 2.2rem;
}

.cardSolution {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
}

.cardSolution img {
    height: 540px;
}

@media (max-width: 768px) {
    .grid {
        padding: 0rem 0rem 0rem 0rem;
        transform: perspective(1560px) rotateX(0deg);

        * {
            overflow: hidden;
        }
    }

    .grid_wrap {
        max-width: calc(var(--width-max-section) * 1);
    }

    .grid_first {
        width: 100%;
        border-radius: 0rem;
    }

    .grid_first_box {
        padding: 5rem 2rem 1rem 2rem;
        width: 100%;
    }

    .grid_second {
        position: relative;
        margin: 0;
        padding: 1rem 1rem 3rem 1rem;
        width: 100%;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .grid_second_box {
        display: grid;
        grid-gap: 1rem 1rem;
        grid-template-columns: 48% 48% 2fr;
        grid-template-areas:
            'a a'
            'b c'
            'd e'
            'f g';
    }

    .cardSolution {
        position: relative;
        top: 1rem;
        left: 0;
        bottom: 0;
        height: 9rem;
    }

    .cardSolution img {
        height: auto;
        max-height: 150px;
    }
}

.section_02 {
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url('/assets/bg_001.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
}

.section_02::after {
    content: '';
    position: absolute;
    background: var(--color-accent-200);
    z-index: -1;
    inset: 0;
    opacity: 0.7;
}

.section_02_block {
    width: 100vw;
    height: 100vh;
    padding: 9rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    span {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.section_02_item {
    width: 100vw;
    max-width: 60vw;
    text-align: center;
    word-break: keep-all;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .section_02_item {
        max-width: 80vw;
    }
}

.brandLogo {
    width: 100%;
    max-width: var(--width-max-section);
    position: absolute;
    bottom: 1rem;
    left: 0;

    .swiper-wrapper {
        transition-timing-function: linear;
        padding: 1.5rem;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }


    .swiper-slide img {
        display: block;
        width: 200px;
        object-fit: cover;
    }

    .swiper-slide:hover {
        transform: scale(1.1);
    }
}

.adjust-logo {
  margin-top: 15px; 
}

@media (max-width: 768px) {

.brandLogo {
    .section_02_block {
        height: 50vh;
        padding: 0;
        span {
            display: inline;
        }
    }

    .swiper-slide img {
        width: 120px;
    }
}
}

.section_03 {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-point-200);
}

.section_03_block {
    width: 100%;
    max-width: var(--width-max-section);
    display: flex;
    justify-content: start;
    align-self: start;
    background-color: var(--color-point-200);
    padding: 4rem 1rem 6rem 1rem;
}

.section_03_item {
    display: block;
    padding: 4rem 2rem 0 2rem;
    text-align: start;

    span {
        display: block;
    }
}

.section_04 {
    width: 100vw;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-accent-200);
}

.section_04_wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -8rem;
    margin-bottom: 8rem;
    padding-bottom: 2rem;
}

.section_04_item {
    width: 100%;
    max-width: var(--width-max-section);
    height: 100%;
    padding: 2rem;
    margin: 0;
    display: grid;
}

.section_04_item_box {
    width: 98%;
    height: 100%;
    max-height: 650px;
    border-radius: 1rem;
    background-color: var(--color-white);
    border-radius: 1.5rem;
    border: 2px solid rgb(255, 255, 255);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 0rem;
    display: grid;
    grid-template-columns: 30% 70% 1fr 1fr;
    transform-origin: top center;
}

.section_04_item_box:nth-child(1) {
    position: sticky;
    top: 0rem;
}

.section_04_item_box:nth-child(2) {
    position: sticky;
    top: 1.5rem;
}

.section_04_item_box:nth-child(3) {
    position: sticky;
    top: 3rem;
}

.section_04_item_box:nth-child(4) {
    position: sticky;
    top: 4.5rem;
}

.section_04_item_box:nth-child(5) {
    position: sticky;
    top: 6rem;
}

.section_04_item_box:nth-child(6) {
    position: sticky;
    top: 7.5rem;
}

.section_04_item_box_L {
    padding: 0 3rem 0 2rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section_04_item_box_b {
    position: absolute;
    left: 4rem;
    bottom: 1.7rem;
}

.fullCardIcon img {
    height: 3.2rem;
}

.fullCardImg img {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.fullCardImgZ {
    position: absolute;
    right: -2.5rem;
    bottom: 1rem;
}

.fullCardImgZ img {
    width: 18vw;
    height: 15vw;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow:
        rgba(0, 0, 0, 0.12) 0px 4px 12px,
        rgba(0, 0, 0, 0.08) 0px 2px 4px,
        rgba(0, 0, 0, 0.05) 0px 8px 24px;
}

@media (max-width: 768px) {
    .section_04_wrap {
        margin-top: -6rem;
        margin-bottom: 6rem;
        padding-bottom: 4rem;
    }

    .section_03_block {
        padding: 2rem 1rem 4rem 1rem;
    }

    .section_04_item {
        padding: 1rem;
    }

    .section_04_item_box {
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        padding: 2rem;
        position: relative;
    }

    .section_04_item_box_L {
        padding: 0 3rem 0 0rem;
    }

    .section_04_item_box_b {
        position: absolute;
        top: 2rem;
        right: 2.2rem;
        left: 0;
        bottom: 0;
        text-align: right;
    }

    .fullCardIcon img {
        height: 2.2rem;
    }

    .fullCardImg {
        display: block;
        position: relative;
    }

    .fullCardImgZ {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
        width: 35%;
        z-index: 1;
    }

    .fullCardImgZ img {
        width: 35vw;
        height: 30vw;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        box-shadow:
            rgba(0, 0, 0, 0.12) 0px 4px 12px,
            rgba(0, 0, 0, 0.08) 0px 2px 4px,
            rgba(0, 0, 0, 0.05) 0px 8px 24px;
    }
}

.section_05 {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-white);
}

.section_05_block {
    width: 100%;
    max-width: var(--width-max-section);
    display: flex;
    justify-content: start;
    align-self: start;
    background-color: transparent;
    padding: 4rem 1rem 0rem 1rem;
}

.section_05_item {
    display: block;
    width: 100%;
    padding: 4rem 2rem 0 2rem;
    text-align: start;

    span {
        display: block;
    }
}

.section_06 {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-white);
}

.section_06_block {
    width: 100%;
    max-width: 80vw;
    display: flex;
    justify-content: start;
    align-self: start;
    background-color: transparent;
    padding: 1rem 1rem 5rem 1rem;
}

@media (max-width: 768px) {
    .section_06_block {
        max-width: 100vw;
    }
}

.section_06_item {
    display: flex;
    gap: 3rem;
    width: 100%;
    text-align: start;
    justify-content: center;

    span {
        display: block;
    }
}

.section_06_item_box {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section_06_item_box_img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 280px;
    border-radius: 1rem;
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.section_06_item_box_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section_06_item_box_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    height: 100%;
    justify-content: start;
    align-items: start;
}

.grid_box {
    margin-bottom: 3rem;
}

.section_06_item_box_grid_box {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

.function_icon {
    padding: 0.8rem 1rem;
    background-color: var(--color-gray);
    border-radius: 0.5rem;
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-width: 200px;
}

.mix {
    padding: 0.1rem 0.5rem 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-accent-200);
    pointer-events: none;
}

.functionButton {
    transition: all 250ms;
    transform: scale(1);
    cursor: default;
}

.custom_case_section {
    width: 100%;
    position: relative;
    background-color: var(--color-white);
    padding: 1rem 1rem 5rem 1rem;
    display: flex;
    justify-content: center;
}
.custom_case_container {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.custom_case_header {
    text-align: left;
    margin-bottom: 1rem;
}

.custom_slider_wrapper {
    width: 100%;
    max-width: 960px;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    border-radius: 12px;
}

.custom_slider_track {
    display: flex;
    width: calc(960px * 6);
    animation: customSlide 30s linear infinite;
    gap: 0;
}

.custom_slide {
    position: relative;
    width: 100%;
    max-width: 960px;
    flex-shrink: 0;
}

.custom_slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.custom_slide_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    min-height: 140px;
    color: white;
    box-sizing: border-box;
}

.custom_slide_text p {
    width: 50%;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@keyframes customSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-4800px);
    }
}

@media (max-width: 768px) {
    .custom_slider_wrapper {
        height: 500px;
    }

    .custom_slide img {
        height: 500px;
    }

    .custom_slide_text {
        padding: 1rem 1.2rem;
        min-height: 100px;
    }

    .custom_slide_text h3 {
        font-size: 1.2rem;
    }

    .custom_slide_text p {
        font-size: 0.9rem;
    }

    .custom_slider_track {
        width: calc(100% * 5);
    }

    .custom_slide {
        width: 100%;
    }
}

.section_07 {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-gray);
}

.section_07_block {
    width: 100%;
    max-width: var(--width-max-section);
    display: flex;
    justify-content: center;
    align-self: start;
    padding: 4rem 1rem 8rem 1rem;
}

.section_07_item {
    position: relative;
    display: block;
    width: 100%;
    padding: 2rem 2rem 0rem 2rem;
    text-align: center;

    span {
        display: block;
    }
}

.section_07_item_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    word-break: keep-all;
    padding: 3rem 0 0 0;

    span {
        text-align: center;
    }
}

.review_grid {
    display: grid;
    justify-content: center;
    align-items: start;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.review_grid_item {
    padding: 2rem 2rem;
    background-color: var(--color-white);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.review_grid_item_top {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: left;
    gap: 1rem;
    width: 100%;
    padding: 0 0.5rem;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate_bottom {
    animation: slideUpFadeIn 0.6s ease-out both;
}

.profile_img {
    border-radius: 10rem;
    width: 5rem;
    height: 5rem;
    overflow: hidden;
    box-shadow:
        rgba(0, 0, 0, 0.08) 0px 0.60219px 1.32481px -1.16667px,
        rgba(0, 0, 0, 0.07) 0px 2.28853px 5.03477px -2.33333px,
        rgba(0, 0, 0, 0.04) 0px 10px 22px -3.5px;
}

.profile_img img {
    width: 100%;
}

.profile_name {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 0rem;
    line-height: 0;
    padding: 0;
    margin-top: 0rem;

    span {
        text-align: left;
    }
}

.profile_name > .mt {
    margin-top: -0.8rem;
}

.review_grid_item_contents {
    padding: 1rem 0;
}

.review_contents {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    height: 270px;
    padding: 0 0 0 0.3rem;
}

.review_grid_item_bottom {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 0 0 0 0.5rem;
}

.brand_img {
    width: 2.5rem;
    overflow: hidden;
}

.brand_img img {
    width: 100%;
}

.brand_text {
    background-color: var(--color-gray);
    line-height: 1;
    padding: 0.5rem;
    border-radius: 8px;
}

.review_grid_item_bottom {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .section_05_item {
        padding: 4rem 2rem 0 2rem;
    }

    .section_05_block {
        padding: 2rem 1rem 0rem 1rem;
    }

    .section_06_block {
        padding: 0rem 1rem 2rem 1rem;
    }

    .section_06_item {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0rem;
        width: 100%;
        padding: 0;
    }

    .section_06_item_box {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }

    .section_06_item_box_img {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .section_06_item_box_grid {
        justify-content: center;
        align-items: start;
        gap: 1rem;
    }

    .function_icon {
        min-width: 100%;
    }

    .section_07_item {
        padding: 3rem 0rem 0rem 0rem;
    }

    .section_07_item_box {
        padding: 1rem 0 0 0;
    }

    .section_07_block {
        padding: 2rem 1rem 3rem 1rem;
    }

    .review_grid_item {
        padding: 2rem 1rem;
    }

    .review_grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review_contents {
        height: 100%;
    }
}

.section_08 {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-self: start;
    background-color: var(--color-gray);
}

.section_08_block {
    width: 100%;
    /*max-width: var(--width-max-section); /*애니메이션 배경 변수*/
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-point-200);
}

.section_08_wrap {
    width: 100%;
    max-width: var(--width-max-section);
    justify-content: start;
    align-self: start;
    padding: 4rem 1rem 6rem 1rem;
}

.section_08_item {
    width: 100%;
    display: block;
    padding: 4rem 2rem 2rem 2rem;
    text-align: start;
    word-break: keep-all;
    overflow-wrap: break-word;

    span {
        display: block;
    }
}

.contact_us_grid {
    display: grid;
    grid-gap: 0rem;
    grid-template-columns: 1fr 1fr;
}

.contact_us_grid_item {
    display: grid;
    grid-gap: 0rem;
    grid-template-columns: 1fr;
}

.customer_bg {
    background-clip: border-box;
    background-color: transparent;
    background-image: url('/assets/customer_bg.png');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 80%;
}

.area1 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;

    .input {
        width: 100%;
        height: 45px;
        background-color: #ffffff;
        border-radius: 0.5rem;
        padding: 0 1rem;
        margin: 0 0 1rem 0;
        border: 2px solid transparent;
        font-size: 1rem;
        transition:
            border-color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s,
            color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s,
            background 0.2s cubic-bezier(0.25, 0.01, 0.25, 1) 0s;
    }

    .label {
        width: 100%;
        display: block;
        margin: 0 0 0 0;
        color: var(--color-black);
        transition: color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s;
    }

    .input:hover,
    .input:focus,
    .input-group:hover .input {
        outline: none;
        border-color: var(--color-point-200);
    }

    .input-group:hover .label,
    .input:focus {
        color: var(--color-black);
    }
}

.area2 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr;

    .input {
        width: 100%;
        height: 200px;
        background-color: #ffffff;
        border-radius: 0.5rem;
        padding: 1rem 1rem;
        margin: 0 0 1rem 0;
        border: 2px solid transparent;
        font-size: 1rem;
        transition:
            border-color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s,
            color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s,
            background 0.2s cubic-bezier(0.25, 0.01, 0.25, 1) 0s;
        resize: none;
    }

    .label {
        width: 100%;
        display: block;
        padding: 1rem 0rem 0.5rem 0;
        margin: 0 0 0 0;
        color: var(--color-black);
        transition: color 0.3s cubic-bezier(0.25, 0.01, 0.25, 1) 0s;
    }

    .input:hover,
    .input:focus,
    .input-group:hover .input {
        outline: none;
        border-color: var(--color-point-200);
    }

    .input-group:hover .label,
    .input:focus {
        color: var(--color-black);
    }
}

@media (max-width: 768px) {
    .section_08_item {
        width: 100%;
        display: block;
        padding: 0 1rem;
        text-align: start;

        span {
            display: block;
        }
    }

    .contact_us_grid {
        display: grid;
        grid-gap: 1rem;
        grid-template-columns: 1fr;
        padding: 2rem 1rem 0rem 1rem;
    }

    .contact_us_grid_item {
        display: grid;
        grid-gap: 0rem;
        grid-template-columns: 1fr;
    }

    .area1 {
        display: grid;
        grid-gap: 1rem;
        grid-template-columns: 1fr 1fr;

        .input {
            width: 100%;
            max-width: 100%;
            padding: 0 1rem;
            margin: 0 0 1rem 0;
        }
    }

    .area2 {
        grid-gap: 0rem;
    }

    .customer_bg {
        display: none;
    }
}

.section_foot {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-self: start;
    background-color: var(--color-gray);
}

.section_foot_block {
    width: 100%;
    max-width: var(--width-max-section);
    display: flex;
    justify-content: start;
    align-self: start;
    background-color: transparent;
    padding: 0rem 1rem 0rem 1rem;
}

.section_foot_item {
    display: block;
    width: 100%;
    padding: 10rem 2rem 11rem 2rem;
    text-align: start;

    span {
        display: block;
    }
}

.section_foot_grid {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 33% 47% 20% 1fr 1fr 1fr;
    padding: 1rem;
}

.section_foot_grid_item {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    word-break: keep-all;
}

.button_list {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0 0;
    color: var(--color-darkgray);
}

@media (max-width: 768px) {
    .section_foot_block {
        padding: 0rem 0rem 0rem 0rem;
    }

    .section_foot_grid {
        display: grid;
        grid-gap: 2rem;
        grid-template-columns: 1fr;
        padding: 0rem;
    }

    .copyright {
        justify-content: start;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.section_game {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #0f1c2f;
    background-image: url('/assets/orcai_background.jpg');
    background-position: -50%;
    background-size: cover;
    padding: 2rem 1rem;
}

.section_game_block {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding: 5rem 0;
}

.section_game_wrap {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ✅ expo.png 반응형 */
.section_game_wrap img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ✅ 배너 박스 */
.section_banner {
    width: 100%;
    max-width: 1000px;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(
        to right,
        #c45c2c,
        #f6bb42
    ); /* ← 이미지 스타일 반영 */
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    word-break: keep-all;
}

.section_game_item {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

/* ✅ 카드판 4x2 고정 */
.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    padding-bottom: 60px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ✅ 카드 크기 확대 */
.card {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 0.714;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
    position: relative;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

.card-front {
    background-image: url('/assets/card.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-back {
    background-size: cover;
    background-position: center;
    transform: rotateY(180deg);
}

.game-board.single-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 0;
}

@media (max-width: 768px) {
    .section_game_wrap img {
        max-width: 300px;
    }

    .section_banner {
        font-size: 1.2rem;
        padding: 1rem;
        max-width: 100%;
    }

    .game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 0 4px;
    }

    .card {
        width: 22vw;
        max-width: none;
        aspect-ratio: 0.714;
    }

    .section_game_block {
        padding: 2rem 0;
    }

    .section_game_item {
        padding: 1rem;
    }
}

.policy_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}
