html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.main-page sup.trademark {
    font-family: "Russo One", sans-serif !important;
}

.page-scroll,
.main-scroll,
main {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* ========================================
Common Section
======================================== */

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-family: "Russo One", sans-serif;
    color: #111;
    font-size: calc(64 * var(--vw));
}

.section-title span {
    color: var(--red);
}

.section-description {
    margin-top: calc(24 * var(--vw));
    color: #222;
    font-size: calc(24 * var(--vw));
    font-weight: 600;
}

.btn-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: calc(14 * var(--vw)) calc(50 * var(--vw));
    border-radius: calc(100 * var(--vw));
    background: var(--red);
    color: #fff;
    font-size: calc(15 * var(--vw));
    font-weight: 500;
    letter-spacing: calc(2.5 * var(--vw));
    line-height: calc(32 * var(--vw));
    text-indent: calc(2.5 * var(--vw));
    text-decoration: none;
    text-transform: lowercase;
    transition: none;
}

/* ========================================
Section 01 : Main Visual
======================================== */

.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: calc(760 * var(--vw));
    overflow: hidden;
    background-color: #000;
}

.main-visual-swiper {
    width: 100%;
    height: 100%;
}

.main-visual-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-visual-bg {
    position: absolute;
    inset: 0;
}

.main-visual-bg img,
.main-visual-bg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-visual-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .22) 0%,
        rgba(0, 0, 0, .18) 45%,
        rgba(0, 0, 0, .58) 100%
    );
}

.main-visual-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.main-visual-title {
    margin: 0;
    color: #fff;
    font-family: "Pretendard", sans-serif;
    font-size: calc(84 * var(--vw));
    font-weight: 700;
    line-height: calc(104 * var(--vw));
    letter-spacing: -1px;
    word-break: keep-all;
}

.main-visual-title em {
    color: var(--red);
    font-style: normal;
}

.main-visual-title-line {
    display: block;
    overflow: hidden;
}

.main-visual-title-line > span {
    display: block;
    opacity: 0;
    transform: translateY(115%);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, .55),
        0 4px 16px rgba(0, 0, 0, .35);
    will-change: transform, opacity;
}

.main-visual-slide.swiper-slide-active .main-visual-title-line > span {
    animation: mainVisualTitleReveal 1.05s cubic-bezier(.22, 1, .36, 1) forwards;
}

.main-visual-slide.swiper-slide-active .main-visual-title-line:nth-child(2) > span {
    animation-delay: .12s;
}

@keyframes mainVisualTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(115%);
    }

    18% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-visual-control {
    position: absolute;
    right: 0;
    bottom: calc(54 * var(--vw));
    left: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(100% - calc(120 * var(--vw)));
    max-width: 1360px;
    margin: 0 auto;
}

.main-visual-pagination {
    position: static !important;
    width: 100% !important;
}

.main-visual-video-progress {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-visual-video-track {
    position: relative;
    display: block;
    width: 100%;
    height: calc(2 * var(--vw));
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .16);
    cursor: pointer;
}

.main-visual-video-fill {
    --video-progress: 0;
    position: absolute;
    inset: 0;
    display: block;
    background: var(--red);
    transform: scaleX(var(--video-progress));
    transform-origin: left center;
    will-change: transform;
}

/* ========================================
Section 02 : History
======================================== */

.history-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.history-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../images/main_bg_s3.png") center / cover no-repeat;
}

.history-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .45) 0%,
        rgba(0, 0, 0, .58) 100%
    );
}

.history-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.history-logo img {
    display: block;
    width: calc(386 * var(--vw));
    height: auto;
}

.history-title {
    margin-top: calc(60 * var(--vw));
    font-size: calc(70 * var(--vw));
    font-weight: 700;
    line-height: calc(84 * var(--vw));
    letter-spacing: calc(-2 * var(--vw));
    word-break: keep-all;
}

.history-description {
    margin-top: calc(60 * var(--vw));
    margin-bottom: calc(100 * var(--vw));
    color: rgba(255, 255, 255, .78);
    font-size: calc(20 * var(--vw));
    font-weight: 400;
    line-height: calc(34 * var(--vw));
    word-break: keep-all;
}

/* ========================================
Section 04 : Support
======================================== */

.support-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #f4f4f4 url("../images/main_bg_s5.png") center / cover no-repeat;
}

.support-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 100vh;
    margin: 0 auto;
    padding: calc(110 * var(--vw)) 0;
    box-sizing: border-box;
}

.support-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: calc(80 * var(--vw));
    width: max-content;
    transform: translate(-50%, -50%);
}

.support-cards .swiper-wrapper {
    align-items: flex-start;
    justify-content: center;
    width: max-content;
    gap: calc(80 * var(--vw));
}

.support-card {
    position: relative;
    flex: 0 0 calc(380 * var(--vw));
    width: calc(380 * var(--vw));
    padding: calc(50 * var(--vw));
    box-sizing: border-box;
    border-radius: calc(20 * var(--vw));
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(calc(10 * var(--vw)));
    -webkit-backdrop-filter: blur(calc(10 * var(--vw)));
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.support-card-training {
    transform: translateY(calc(130 * var(--vw)));
}

.support-card-guide {
    transform: translateY(calc(65 * var(--vw)));
}

.support-card-specification {
    transform: translateY(0);
}

/* 기존 위치값 유지 + hover 시 10px 위로 */

.support-card-training:hover {
    box-shadow: 0 calc(30 * var(--vw)) calc(60 * var(--vw)) rgba(0, 0, 0, .12);
    transform: translateY(calc(120 * var(--vw)));
}

.support-card-guide:hover {
    box-shadow: 0 calc(30 * var(--vw)) calc(60 * var(--vw)) rgba(0, 0, 0, .12);
    transform: translateY(calc(55 * var(--vw)));
}

.support-card-specification:hover {
    box-shadow: 0 calc(30 * var(--vw)) calc(60 * var(--vw)) rgba(0, 0, 0, .12);
    transform: translateY(calc(-10 * var(--vw)));
}

.support-card-label {
    margin-bottom: calc(10 * var(--vw));
    color: #636363;
    font-size: calc(16 * var(--vw));
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.support-card-title {
    color: #000;
    font-family: "Russo One", sans-serif;
    font-size: calc(30 * var(--vw));
    line-height: 1.2;
}

.support-card-line {
    width: 100%;
    height: 1px;
    margin: calc(30 * var(--vw)) 0;
    background: var(--red);
}

.support-card-text {
    margin-bottom: calc(30 * var(--vw));
    color: #000;
    font-size: calc(18 * var(--vw));
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: -0.4px;
    word-break: keep-all;
}

.support-card .btn-more {
    margin-top: 0;
}

/* ========================================
Section 05 : Media
======================================== */

.media-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: calc(1080 * var(--vw));
    overflow: hidden;
    background: #f9f9f9;
}

.media-inner {
    display: flex;
    flex-direction: column;
    max-width: calc(1300 * var(--vw));
    margin: 0 auto;
}

.media-content {
    display: grid;
    grid-template-columns: calc(620 * var(--vw)) minmax(0, calc(720 * var(--vw)));
    align-items: stretch;
    justify-content: center;
    gap: calc(30 * var(--vw));
    padding-top: calc(56 * var(--vw));
}

.media-content.is-empty {
    width: calc(1300 * var(--vw));
    grid-template-columns: minmax(0, 1fr);
}

.media-content.is-empty .media-list {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
}

.media-featured[hidden] {
    display: none;
}

.media-featured {
    overflow: hidden;
    border-radius: calc(20 * var(--vw));
    background: #fff;
    transition: .35s;
}

.media-featured-image {
    height: calc(360 * var(--vw));
    overflow: hidden;
}

.media-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.media-featured:hover img {
    transform: scale(1.05);
}

.media-featured-content {
    padding: calc(40 * var(--vw)) calc(34 * var(--vw));
}

.media-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, calc(320 * var(--vw)));
    gap: calc(30 * var(--vw));
    min-width: 0;
}

.media-pagination {
    display: none;
}

.media-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: calc(40 * var(--vw)) calc(34 * var(--vw));
    border-radius: calc(20 * var(--vw));
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
    transition: .35s;
}

.media-item:hover {
    box-shadow: 0 calc(30 * var(--vw)) calc(60 * var(--vw)) rgba(0, 0, 0, .12);
    transform: translateY(calc(-10 * var(--vw)));
}

.media-item.is-active {
    background: var(--red);
}

.media-item-image {
    display: none;
}

/* =========================
Category
========================= */

.media-card-category {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    padding: calc(10 * var(--vw)) calc(24 * var(--vw));
    border-radius: calc(60 * var(--vw));
    background: var(--red);
    color: #fff;
    font-size: calc(18 * var(--vw));
    font-weight: 600;
    line-height: calc(32 * var(--vw));
}

.media-item.is-active .media-card-category {
    background: #fff;
    color: var(--red);
}

.media-card-title {
    display: -webkit-box;
    width: 100%;
    min-width: 0;
    margin-top: calc(30 * var(--vw));
    overflow: hidden;
    color: rgba(0, 0, 0, .88);
    font-size: calc(24 * var(--vw));
    font-weight: 600;
    line-height: calc(30 * var(--vw));
    letter-spacing: -.4px;
    white-space: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.media-item.is-active .media-card-title {
    color: #fff;
}

.media-card-text {
    display: -webkit-box;
    margin-top: calc(20 * var(--vw));
    overflow: hidden;
    color: rgba(0, 0, 0, .88);
    font-size: calc(18 * var(--vw));
    font-weight: 400;
    line-height: calc(26 * var(--vw));
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.media-item.is-active .media-card-text {
    color: rgba(255, 255, 255, .85);
}

/* ========================================
Section 06 : Business
======================================== */

.business-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - calc(200 * var(--vw)));
    overflow: hidden;
    background: url("../images/main_bg_s7.png") center / cover no-repeat;
}

.business-visual {
    position: relative;
    width: 100%;
    height: calc(100vh - calc(200 * var(--vw)));
    overflow: hidden;
}

.business-bg {
    position: absolute;
    inset: 0;
}

.business-dim {
    position: absolute;
    inset: 0;
    background: url("../images/main_bg_s7_dim.png") center / cover no-repeat;
}

/* Content */

.business-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
}

.business-title {
    margin: 0;
    font-size: calc(70 * var(--vw));
    font-weight: 700;
    line-height: calc(90 * var(--vw));
    letter-spacing: -0.1px;
    word-break: keep-all;
}

.business-title em {
    color: var(--red);
    font-style: normal;
}

.business-description {
    margin: calc(25 * var(--vw)) 0;
    color: rgba(255, 255, 255, .6);
    font-size: calc(20 * var(--vw));
    line-height: calc(30 * var(--vw));
    letter-spacing: -1px;
    word-break: keep-all;
}

/* ========================================
Main Page Scroll
======================================== */

/* PC 메인은 섹션 단위 이동 없이 문서 전체를 자연스럽게 스크롤 */
.main-page .main-section {
    height:calc(1080 * var(--vw));
    min-height:calc(1080 * var(--vw));
}
.main-page .history-content {
    height:calc(1080 * var(--vw));
    min-height:calc(1080 * var(--vw));
}

.main-page .business-section{
    height:calc(880 * var(--vw));
    min-height:calc(880 * var(--vw));
}

.main-page .support-inner,
.main-page .business-visual {
    height:100%;
    min-height:100%;
}

/* ========================================
Mobile
======================================== */
.main-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
}

.main-popup.is-open {
    display: flex;
}

.main-popup-dim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, .86);
    cursor: pointer;
}

.main-popup-dialog {
    width: min(750px, calc(100vw - 160px), calc((100dvh - 146px) * 15 / 14)) !important;
    background: #fff;
}

.main-popup-content {
    width: 100%;
    aspect-ratio: 15 / 14;
    overflow: auto;
}

.main-popup-content img {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main-popup-snooze {
    display: flex;
    flex: 0 0 calc(66 * var(--vw));
    align-items: center;
    gap: calc(10 * var(--vw));
    min-height: calc(66 * var(--vw));
    padding: 0 calc(20 * var(--vw));
    box-sizing: border-box;
    background: #fff;
    color: #111;
    font-size: calc(18 * var(--vw));
    cursor: pointer;
}

.main-popup-snooze input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.main-popup-snooze-check {
    position: relative;
    flex: 0 0 calc(30 * var(--vw));
    width: calc(30 * var(--vw));
    height: calc(30 * var(--vw));
    border: 1px solid #bbb;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
}

.main-popup-snooze input:checked + .main-popup-snooze-check {
    border-color: #c00c00;
    background: #c00c00;
}

.main-popup-snooze input:checked + .main-popup-snooze-check::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 38%;
    height: 20%;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.main-popup-snooze input:focus-visible + .main-popup-snooze-check {
    outline: 2px solid #111;
    outline-offset: 2px;
}

body.is-main-popup-open {
    overflow: hidden;
}

body.is-main-popup-open .page-scroll {
    overflow: hidden;
}

@media (max-width: 720px) {
    .main-popup-dialog {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        max-height: none;
        transform: none;
    }

    .main-popup-snooze {
        flex-basis: 50px;
        gap: 8px;
        min-height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }

    .main-popup-snooze-check {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
    }

    .main-visual-bg video.mo-only {
        display: block !important;
    }

    .main-visual-title {
        width: 320px;
        font-size: 38px;
        line-height: 48px;
        letter-spacing: -1.5px;
    }

    .main-visual-title-line.mo-only {
        display: block !important;
    }

    .main-visual-slide.swiper-slide-active .main-visual-title-line:nth-child(3) > span {
        animation-delay: .12s;
    }

    .main-visual-slide.swiper-slide-active .main-visual-title-line:nth-child(4) > span {
        animation-delay: .24s;
    }

    .history-section {
        min-height: 100svh;
    }

    .history-bg {
        background-image: url("../images/main_bg_s3_m.png");
    }

    .main-page .history-content {
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 40px 20px;
    }

    .history-logo img {
        width: 160px;
    }

    .history-title {
        margin-top: 52px;
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -1px;
    }

    .history-description {
        margin-top: 31px;
        margin-bottom: 47px;
        color: rgba(255, 255, 255, .82);
        font-family: "Pretendard", sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: -.5px;
    }

    .history-content .btn-more {
        width: 124px;
        height: 52px;
        padding: 0;
        border-radius: 26px;
        font-size: 14px;
        line-height: 1;
        letter-spacing: 3px;
        text-indent: 3px;
    }

    .support-section {
        min-height: 100svh;
        background-image: url("../images/main_bg_s5_m.png");
    }

    .support-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100svh;
        padding: 20px 0;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .support-section .section-description {
        display: none;
    }

    .support-cards {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        flex: 0 0 auto;
        width: 100%;
        margin-top: 39px;
        transform: none;
    }

    .support-cards .swiper-wrapper {
        justify-content: flex-start;
        width: 100%;
        gap: 0;
    }

    .support-card,
    .support-card-training,
    .support-card-guide,
    .support-card-specification {
        flex-basis: 210px;
        width: 210px;
        height: 304px;
        padding: 28px 20px 20px;
        border-radius: 12px;
        transform: none;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .support-card-training:hover,
    .support-card-guide:hover,
    .support-card-specification:hover {
        transform: none;
        box-shadow: none;
    }

    .support-card-label {
        margin-bottom: 6px;
        font-size: 12px;
        line-height: 1.4;
    }

    .support-card-title {
        font-size: 18px;
        line-height: normal;
        letter-spacing: 0;
    }

    .support-card-line {
        margin: 18px 0;
    }

    .support-card-text {
        margin-bottom: 18px;
        overflow: hidden;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: -.25px;
    }

    .support-card .btn-more {
        width: 92px;
        height: 45px;
        padding: 0;
        border-radius: 23px;
        font-size: 13px;
        line-height: 1;
        letter-spacing: 3px;
        text-indent: 3px;
    }

    .media-inner {
        max-width: none;
        padding: 40px 0 38px;
    }

    .media-section .section-description,
    .media-featured {
        display: none;
    }

    .media-content {
        display: block;
        padding-top: 30px;
    }

    .media-content.is-empty {
        width: 100%;
    }

    .media-list {
        display: block;
        width: calc(100% - 50px);
        margin: 0 auto;
        overflow: hidden;
    }

    .media-list .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .media-item,
    .media-item.is-active {
        display: block;
        height: auto;
        padding: 0 0 25px;
        overflow: hidden;
        border-radius: 10px;
        background: #fff;
        box-shadow: none;
        transform: none;
    }

    .media-item:hover {
        box-shadow: none;
        transform: none;
    }

    .media-item-image {
        display: block;
        width: 100%;
        height: 227px;
        margin-left: 0;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }

    .media-item-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .media-card-category,
    .media-item.is-active .media-card-category {
        margin-top: 31px;
        margin-left: 25px;
        padding: 7px 18px;
        background: var(--red);
        color: #fff;
        border-radius: 22px;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 1px;
    }

    .media-card-title,
    .media-item.is-active .media-card-title {
        width: calc(100% - 50px);
        margin-top: 27px;
        margin-left: 25px;
        color: #111;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: -.5px;
        -webkit-line-clamp: 1;
    }

    .media-card-text,
    .media-item.is-active .media-card-text {
        width: calc(100% - 50px);
        height: 74px;
        margin-top: 14px;
        margin-left: 25px;
        color: #777;
        font-size: 14px;
        line-height: 1.75;
        letter-spacing: -.35px;
        -webkit-line-clamp: 3;
    }

    .media-pagination {
        position: static !important;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        transform: none !important;
    }

    .media-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 !important;
        background: #ddd;
        opacity: 1;
    }

    .media-pagination .swiper-pagination-bullet-active {
        background: var(--red);
    }

    body.main-page {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .main-page .page-scroll {
        width: 100%;
        height: auto;
        overflow: visible;
        overscroll-behavior-y: auto;
        scroll-snap-type: none;
    }

    .main-page .main-section {
        width: 100%;
        max-width: none;
        height: 640px;
        min-height: 640px;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    .main-page .main-section.business-section {
        height: 450px;
        min-height: 450px;
    }

    .main-page #section-products {
        --products-mobile-scale: 1px;
    }

    .main-page #section-support .support-inner {
        display: block;
        height: 100%;
        min-height: 0;
        padding: 40px 0 0;
    }

    .main-page #section-media .media-inner {
        width: 100%;
        min-width: 0;
        height: 100%;
        min-height: 0;
        box-sizing: border-box;
    }

    .main-page .business-visual {
        height: 100%;
        min-height: 100%;
    }

    .business-section {
        background-image: url("../images/sub_p_bbg02_m.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .business-dim {
        display: none;
    }

    .business-content {
        align-items: flex-start;
        justify-content: flex-start;
        height: 100%;
        padding: 179px 25px 0;
        box-sizing: border-box;
        text-align: left;
    }

    .business-title {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -.045em;
    }

    .business-description {
        margin: 14px 0 30px;
        color: rgba(255, 255, 255, .6);
        font-size: 14px;
        line-height: 22px;
        letter-spacing: -.035em;
    }

    .business-content .btn-more {
        min-width: 162px;
        min-height: 50px;
        padding: 0 28px;
        border-radius: 25px;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 50px;
    }
}
