:root {
    --vh: 100%;
}

/* Main Page */
    .section-main-intro {
        overflow: hidden;

        .section-main-intro-container {
            position: relative;
            max-width: unset;
            width: 100%;
            height: calc(var(--vh, 1vh) * 100);
            padding: 0;

            .video {
                position: relative;
                width: 100%;
                height: 100vh;
                overflow: hidden;
                pointer-events: none;
            }

            .content {
                position: absolute;
                top: 0;
                left: 0;
                z-index: 3;

                display: flex;
                flex-direction: column;
                justify-content: space-between;
                gap: 0;

                width: 100%;
                height: 100%;

                padding: 100px var(--COMMON-PADDING) var(--COMMON-PADDING);

                .title,
                .subtitle {
                    width: fit-content;

                    font-size: min(15vw, 60px);
                    font-weight: 700;
                    line-height: 1.1;
                    color: #fff;
                }

                .subtitle {
                    align-self: flex-end;
                    text-align: right;
                }

                .description {
                    font-size: min(4vw, 20px);
                    font-weight: 600;
                    line-height: 1.5;
                    color: #fff;
                }
            }
        }

        @media screen and (min-width: 1024px) {
            .section-main-intro-container {
                .content {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    padding: 100px var(--COMMON-PADDING-60) var(--COMMON-PADDING-60);

                    .title,
                    .subtitle {
                        font-size: min(8.5vw, 170px);
                    }

                    .title {
                        grid-column: 1 / span 2;
                        order: 1;
                    }

                    .subtitle {
                        justify-self: end;
                        order: 3;
                    }

                    .description {
                        align-self: end;
                        font-size: min(2vw, 30px);
                        order: 2;
                    }
                }
            }
        }
    }

    .section-main {
        padding-top: var(--COMMON-PADDING-150);

        .head-title {
            padding: 0 var(--COMMON-PADDING) 40px;

            .title {
                font-size: min(8vw, 40px);
                font-weight: 600;
                line-height: 1;
            }
        }

        @media screen and (min-width: 1024px) {
            padding-top: var(--COMMON-PADDING-350);

            .head-title {
                padding: 0 var(--COMMON-PADDING-60) 80px;

                .title {
                    font-size: 90px;
                }
            }
        }
    }

    .section-main-01 {
        .swiper-container {
            position: relative;
            width: 100%;
            height: 100%;

            .swiper-wrapper {
                .swiper-slide {
                    user-select: none;

                    .thumb {
                        width: 100%;
                        height: 100%;
                        aspect-ratio: 1 / 1;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            pointer-events: none;
                            user-select: none;
                        }
                    }

                    .swiper-content {
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        transition: opacity .35s cubic-bezier(0.33, 1, 0.68, 1);

                        display: flex;
                        flex-direction: column;
                        gap: 5px;

                        width: 100%;
                        padding: 25px var(--COMMON-PADDING);
                        background: linear-gradient(to top, #000, transparent);

                        .title {
                            font-size: min(5vw, 18px);
                            font-weight: 600;
                            line-height: 1;
                        }

                        .description {
                            font-size: min(2.9vw, 12px);
                            font-weight: 400;
                            line-height: 1;
                        }
                    }
                }
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 60px;

            padding: 30px var(--COMMON-PADDING) 0;

            .description {
                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1.5;
            }

            a {
                align-self: flex-end;
                display: flex;
                align-items: center;
                gap: 10px;

                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1;

                padding-bottom: 5px;
                border-bottom: 2px solid var(--BASE-COLOR-INVERT);

                img {
                    width: 20px;
                    filter: brightness(0) invert(1);
                }
            }
        }

        @media screen and (min-width: 1024px) {
            .swiper-container {
                .swiper-wrapper {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);

                    .swiper-slide {
                        .swiper-content {
                            gap: 10px;
                            opacity: 0;
                            padding: 40px 30px;

                            .title {
                                font-size: 26px;
                            }

                            .description {
                                font-size: 18px;
                                line-height: 1.4;
                            }
                        }

                        &:hover {
                            .swiper-content {
                                opacity: 1;
                            }
                        }
                    }
                }

            }

            .content {
                flex-direction: row;
                justify-content: space-between;
                gap: 0;

                padding: 50px var(--COMMON-PADDING-60) 0;

                .description {
                    width: 80%;
                    font-size: min(3vw, 40px);
                }

                a {
                    align-self: flex-start;
                    font-size: min(3vw, 40px);
                    padding-top: 10px;

                    img {
                        width: 26px;
                    }
                }
            }
        }
    }

    .section-main-02 {
        .swiper-container {
            position: relative;
            width: 100%;
            height: 100%;

            .swiper-wrapper {
                display: flex;
                align-items: center;

                .swiper-slide {
                    display: flex;
                    border-radius: 50%;
                    overflow: hidden;
                    user-select: none;

                    .thumb {
                        width: 100%;
                        height: 100%;
                        aspect-ratio: 1 / 1;
                        overflow: hidden;
                        transition: background-color .35s cubic-bezier(0.33, 1, 0.68, 1);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            pointer-events: none;
                            user-select: none;
                            transition: opacity .35s cubic-bezier(0.33, 1, 0.68, 1);
                        }
                    }

                    .swiper-content {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        transition: opacity .35s cubic-bezier(0.33, 1, 0.68, 1);

                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        width: 100%;

                        .title {
                            font-size: min(5vw, 18px);
                            font-weight: 600;
                            text-align: center;
                            line-height: 1;
                        }

                        .description {
                            font-size: min(4vw, 16px);
                            font-weight: 600;
                            text-align: center;
                            line-height: 1;
                        }
                    }

                    &.button {
                        margin-left: 3rem;
                        border-radius: 0;

                        a {
                            display: flex;
                            align-items: center;
                            gap: 10px;

                            font-size: min(6vw, 28px);
                            font-weight: 500;
                            line-height: 1;
            
                            padding-bottom: 5px;
                            border-bottom: 2px solid var(--BASE-COLOR-INVERT);
            
                            img {
                                width: 20px;
                                filter: brightness(0) invert(1);
                            }
                        }
                    }
                }
            }
        }

        @media screen and (min-width: 1024px) {
            .swiper-container {
                padding: 0 var(--COMMON-PADDING-60);

                .swiper-wrapper {
                    display: grid;
                    grid-template-columns: repeat(5, auto);

                    .swiper-slide {
                        .swiper-content {
                            gap: 30px;
                            opacity: 0;

                            .title {
                                font-size: min(2.5vw, 30px);
                                line-height: 1.2;
                                color: var(--FONT-COLOR-INVERT);
                            }

                            .description {
                                font-size: 16px;
                                color: var(--FONT-COLOR-INVERT);
                            }
                        }

                        &.button {
                            align-items: center;

                            a {
                                height: fit-content;
                                font-size: min(3vw, 40px);

                                img {
                                    width: 26px;
                                }
                            }
                        }

                        &:hover {
                            .thumb {
                                background-color: var(--BASE-COLOR-INVERT);

                                img {
                                    opacity: 0;
                                }
                            }

                            .swiper-content {
                                opacity: 1;
                            }
                        }
                    }
                }

            }
        }
    }

    .section-main-03 {
        .thumb {
            width: 100%;
            aspect-ratio: 4 / 1;
            overflow: hidden;

            padding: 0 var(--COMMON-PADDING);

            img {
                width: 100%;
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 60px;

            padding: 30px var(--COMMON-PADDING) 0;

            .description {
                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1.5;
            }

            a {
                align-self: flex-end;
                display: flex;
                align-items: center;
                gap: 10px;

                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1;

                padding-bottom: 5px;
                border-bottom: 2px solid var(--BASE-COLOR-INVERT);

                img {
                    width: 20px;
                    filter: brightness(0) invert(1);
                }
            }
        }

        @media screen and (min-width: 1024px) {
            .thumb {
                aspect-ratio: 6 / 1;
                padding: 0 var(--COMMON-PADDING-60);
            }

            .content {
                flex-direction: row;
                justify-content: space-between;
                gap: 0;

                padding: 50px var(--COMMON-PADDING-60) 0;

                .description {
                    width: 80%;
                    font-size: min(3vw, 40px);
                }

                a {
                    align-self: flex-start;
                    font-size: min(3vw, 40px);
                    padding-top: 10px;

                    img {
                        width: 26px;
                    }
                }
            }
        }
    }

/* About Page */
    .section-about-intro {
        overflow: hidden;

        .section-about-intro-container {
            position: relative;
            max-width: unset;
            width: 100%;
            height: 340px;
            padding: 0;

            .video {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
                pointer-events: none;
            }
        }

        @media screen and (min-width: 1024px) {
            .section-about-intro-container {
                height: 750px;
            }
        }
    }

    .section-about {
        .head-title {
            .title {
                font-size: min(4vw, 14px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: var(--COMMON-PADDING-60);
            }
        }

        @media screen and (min-width: 1024px) {
            .head-title {
                .title {
                    font-size: min(4vw, 20px);
                    padding-bottom: 0;
                }
            }
        }
    }

    .section-about-01 {
        padding: var(--COMMON-PADDING-60) var(--COMMON-PADDING) var(--COMMON-PADDING-150);

        .content {
            display: flex;
            flex-direction: column;
            gap: 40px;

            strong {
                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1.5;
            }

            p {
                font-size: min(4vw, 16px);
                font-weight: 400;
                line-height: 2;
            }
        }

        @media screen and (min-width: 1024px) {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            padding: var(--COMMON-PADDING-120) var(--COMMON-PADDING-60) var(--COMMON-PADDING-350);

            .head-title {
                .title {
                    padding-top: 10px;
                }
            }

            .content {
                display: grid;
                grid-template-columns: 0.6fr 0.4fr;
                gap: min(5vw, 80px);
                width: 70%;

                strong {
                    grid-column: 1 / span 2;
                }
            }
        }
    }

    .section-about-02 {
        padding: 0 0 var(--COMMON-PADDING-150);
        background-image: url(/page/images/about/1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        .head-title {
            padding: 0 var(--COMMON-PADDING);
        }

        .content {
            padding: 0 var(--COMMON-PADDING);

            .inner-content {
                display: flex;
                flex-direction: column;

                .subtitle {
                    font-size: min(10vw, 40px);
                    font-weight: 600;
                    line-height: 1;
                    padding-bottom: 40px;
                }

                strong {
                    font-size: min(6vw, 28px);
                    font-weight: 500;
                    line-height: 1.5;
                    padding-bottom: 30px;
                }

                p {
                    font-size: min(4vw, 16px);
                    font-weight: 400;
                    line-height: 2;
                }

                &:first-of-type {
                    padding-bottom: var(--COMMON-PADDING-350);
                }
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 0 var(--COMMON-PADDING-60) var(--COMMON-PADDING-350);
            background-position: left center;

            .head-title {
                padding: 0;

                .title {
                    padding-bottom: var(--COMMON-PADDING-200);
                }
            }

            .content {
                padding: 0;

                .inner-content {
                    .subtitle {
                        font-size: 80px;
                        padding-bottom: 80px;
                    }

                    strong {
                        font-size: 22px;
                    }

                    p {
                        font-size: 20px;
                    }

                    &:first-of-type {
                        padding: 0 0 1000px 0;
                    }

                    &:last-of-type {
                        justify-self: end;
                    }
                }
            }
        }

        @media screen and (min-width: 1500px) {
            .content {
                .inner-content {
                    &:first-of-type {
                        padding: 0 0 1000px var(--COMMON-PADDING-150);
                    }

                    &:last-of-type {
                        padding-right: var(--COMMON-PADDING-150);
                    }
                }
            }
        }
    }

    .section-about-03 {
        padding: 0 var(--COMMON-PADDING) var(--COMMON-PADDING-150);

        .thumb {
            width: 100%;
            max-width: 915px;
            margin: 0 auto;
        }

        @media screen and (min-width: 1024px) {
            padding: 0 var(--COMMON-PADDING-60) var(--COMMON-PADDING-350);

            .head-title {
                .title {
                    padding-bottom: var(--COMMON-PADDING-150);
                }
            }
        }
    }

    .section-about-04 {
        .head-title {
            padding: 0 var(--COMMON-PADDING);
        }

        .content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);

            .thumb {
                width: 100%;
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 0 var(--COMMON-PADDING-60) 0;

            .head-title {
                padding: 0;

                .title {
                    padding-bottom: var(--COMMON-PADDING-120);
                }
            }

            .content {
                grid-template-columns: repeat(6, 1fr);
            }
        }
    }

/* Service Page */
    .section-service-intro {
        overflow: hidden;

        .section-service-intro-container {
            position: relative;
            max-width: unset;
            width: 100%;
            height: 340px;
            padding: 0;

            .thumb {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
                pointer-events: none;
            }
        }

        @media screen and (min-width: 1024px) {
            .section-service-intro-container {
                height: 750px;
            }
        }
    }

    .section-service-01 {
        padding: var(--COMMON-PADDING-60) var(--COMMON-PADDING) var(--COMMON-PADDING-150);

        .head-title {
            .title {
                font-size: min(4vw, 14px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: var(--COMMON-PADDING-60);
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 40px;

            strong {
                font-size: min(6vw, 28px);
                font-weight: 500;
                line-height: 1.5;
            }

            p {
                font-size: min(4vw, 16px);
                font-weight: 400;
                line-height: 2;
            }
        }

        @media screen and (min-width: 1024px) {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            padding: var(--COMMON-PADDING-120) var(--COMMON-PADDING-60) var(--COMMON-PADDING-350);

            .head-title {
                .title {
                    font-size: min(4vw, 20px);
                    padding-top: 10px;
                    padding-bottom: 0;
                }
            }

            .content {
                display: grid;
                grid-template-columns: 0.6fr 0.4fr;
                gap: min(5vw, 80px);
                width: 70%;

                strong {
                    grid-column: 1 / span 2;
                }
            }
        }
    }

    .section-service-common {
        display: flex;
        flex-direction: column;
        gap: var(--COMMON-PADDING-100);

        padding: var(--COMMON-PADDING-60) var(--COMMON-PADDING) var(--COMMON-PADDING-120);
        border-top: 1px solid #444;

        .head-title {
            .title {
                font-size: min(8vw, 35px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: 40px;
            }

            .subtitle {
                font-size: min(5vw, 20px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: 30px;
            }

            .description {
                font-size: min(4vw, 16px);
                font-weight: 400;
                line-height: 2;
            }
        }

        .items {
            display: flex;
            flex-direction: column;
            gap: 80px;

            .item {
                display: flex;
                flex-direction: column;
                gap: 30px;

                .item-head {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    h3 {
                        font-size: min(6vw, 22px);
                        font-weight: 500;
                        line-height: 1;
                    }

                    span {
                        font-size: min(4vw, 14px);
                        font-weight: 600;
                        line-height: 1;
                        align-self: flex-end;
                        padding-bottom: 2px;
                    }

                    &::before {
                        content: "";
                        display: inline-block;
                        width: 18px;
                        height: 18px;
                        border-radius: 50%;
                        background-color: var(--BASE-COLOR-INVERT);
                    }
                }

                .item-content {
                    display: flex;
                    flex-direction: column;

                    div {
                        display: flex;
                        justify-content: space-between;
                        padding: 20px 5px;
                        border-bottom: 1px solid #999;

                        h4 {
                            font-size: min(4vw, 14px);
                            font-weight: 600;
                            line-height: 1;
                        }

                        p {
                            font-size: min(4vw, 14px);
                            font-weight: 500;
                            line-height: 1;
                        }

                        &:first-of-type {
                            border-top: 1px solid #999;
                        }
                    }
                }
            }
        }

        &:last-of-type {
            padding-bottom: 0;
        }

        @media screen and (min-width: 1102px) {
            gap: var(--COMMON-PADDING-150);
            padding: var(--COMMON-PADDING-120) var(--COMMON-PADDING-60) var(--COMMON-PADDING-200);

            .head-title {
                .title {
                    font-size: 60px;
                    padding-bottom: 80px;
                }

                .subtitle {
                    font-size: 30px;
                    padding-bottom: 40px;
                }

                .description {
                    font-size: 20px;
                }
            }

            .items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                column-gap: 40px;
                row-gap: var(--COMMON-PADDING-120);

                .item {
                    .item-head {
                        h3 {
                            font-size: 30px;
                        }

                        span {
                            font-size: 16px;
                        }

                        &::before {
                            width: 22px;
                            height: 22px;
                        }
                    }

                    .item-content {
                        div {
                            padding: 25px 5px;

                            h4 {
                                font-size: 16px;
                            }

                            p {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }

        @media screen and (min-width: 1610px) {
            .items {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }

/* Voucher Page */
    .section-voucher-intro {
        .section-voucher-intro-container {
            .thumb {
                width: 100%;
                height: 650px;
            }

            .content {
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                z-index: 3;

                display: flex;
                flex-direction: column;

                width: 100%;

                padding: 0 var(--COMMON-PADDING);

                .title {
                    font-size: min(4vw, 14px);
                    font-weight: 600;
                    line-height: 1;
                    padding-bottom: 80px;
                }

                .subtitle {
                    font-size: min(10vw, 42px);
                    font-weight: 700;
                    text-align: center;
                    line-height: 1.5;
                    text-transform: uppercase;
                    padding-bottom: 70px;
                }

                .description {
                    font-size: min(4vw, 16px);
                    font-weight: 600;
                    text-align: center;
                    line-height: 1.5;
                }
            }
        }

        @media screen and (min-width: 1024px) {
            .section-voucher-intro-container {
                .thumb {
                    height: 1293px
                }

                .content {
                    padding: 0 var(--COMMON-PADDING-60);

                    .title {
                        font-size: 20px;
                        padding-bottom: 150px;
                    }

                    .subtitle {
                        font-size: min(8vw, 130px);
                        line-height: 1.15;
                        padding-bottom: 120px;
                    }

                    .description {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    .section-voucher-01 {
        padding: var(--COMMON-PADDING-100) var(--COMMON-PADDING) var(--COMMON-PADDING-150);

        .head-title {
            .title {
                font-size: min(4vw, 14px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: var(--COMMON-PADDING-60);
            }
        }

        .content {
            padding-bottom: var(--COMMON-PADDING-60);

            strong {
                font-size: min(4vw, 16px);
                font-weight: 500;
                line-height: 2;
            }
        }

        .items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            width: 100%;

            .item {
                display: grid;
                align-items: center;
                justify-content: center;

                width: fit-content;
                padding: 22px 30px;
                border: 1px solid var(--BASE-COLOR-INVERT);
                border-radius: 50px;

                p {
                    font-size: min(4vw, 18px);
                    font-weight: 600;
                    text-align: center;
                    line-height: 1;
                    color: var(--FONT-COLOR);
                }

                &.white {
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);

                    p {
                        color: var(--FONT-COLOR-INVERT);
                    }
                }
            }
        }

        @media screen and (min-width: 1024px) {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;

            padding: var(--COMMON-PADDING-120) var(--COMMON-PADDING-60) var(--COMMON-PADDING-350);

            .head-title {
                .title {
                    font-size: min(4vw, 20px);
                    padding-top: 10px;
                    padding-bottom: 0;
                }
            }

            .content {
                width: 75%;
                padding-bottom: var(--COMMON-PADDING-150);

                strong {
                    font-size: min(4vw, 20px);
                }
            }

            .items {
                gap: 30px;

                .item {
                    p {
                        font-size: 28px;
                    }
                }
            }
        }
    }

    .section-voucher-02 {
        padding: 0 var(--COMMON-PADDING);

        .head-title {
            .title {
                font-size: min(4vw, 14px);
                font-weight: 600;
                line-height: 1;
                padding-bottom: var(--COMMON-PADDING-60);
            }
        }

        .items {
            display: flex;
            flex-direction: column;
            padding: 0 var(--COMMON-PADDING);

            .item {
                position: relative;

                .thumb {
                    border-radius: 50%;
                    overflow: hidden;
                }

                .content {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    z-index: 1;

                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: space-between;
                    gap: min(15vw, 100px);
                    width: 100%;

                    .subtitle {
                        font-size: 3.5vw;
                        font-weight: 600;
                        text-align: center;
                        line-height: 1;
                    }

                    .title {
                        font-size: 10vw;
                        font-weight: 600;
                        text-align: center;
                        line-height: 1;
                    }

                    .description {
                        font-size: 3vw;
                        font-weight: 600;
                        text-align: center;
                        line-height: 2;
                    }
                }

                &:not(:first-of-type) {
                    margin-top: -8vw;
                }

                &:nth-of-type(2) {
                    z-index: 2;
                }

                &:nth-of-type(3) {
                    z-index: 3;
                }
            }
        }

        @media screen and (min-width: 768px) {
            .items {
                flex-direction: row;

                .item {
                    .content {
                        gap: 6vw;

                        .subtitle {
                            font-size: min(1.5vw, 20px);
                        }

                        .title {
                            font-size: min(4vw, 60px);
                        }

                        .description {
                            font-size: min(1.5vw, 20px);
                        }
                    }

                    &:not(:first-of-type) {
                        margin: 0;
                        margin-left: -4vw;
                    }
                }
            }
        }

        @media screen and (min-width: 1024px) {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;

            padding: 0 var(--COMMON-PADDING-60);

            .head-title {
                .title {
                    font-size: min(4vw, 20px);
                    padding-bottom: var(--COMMON-PADDING-150);
                }
            }
        }

        @media screen and (min-width: 1500px) {
            .items {
                padding: 0 90px;
            }
        }
    }

/* Contact Page */
    .section-contact-intro {
        overflow: hidden;

        .section-contact-intro-container {
            position: relative;
            max-width: unset;
            width: 100%;
            height: 340px;
            padding: 0;

            .thumb {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
                pointer-events: none;
            }
        }

        @media screen and (min-width: 1024px) {
            .section-contact-intro-container {
                height: 750px;
            }
        }
    }

    .section-contact-01 {
        display: grid;

        .section-contact-container-01 {
            display: flex;
            flex-direction: column;
            gap: 50px;
            padding: var(--COMMON-PADDING-60) var(--COMMON-PADDING) var(--COMMON-PADDING-150);
            border-bottom: 1px solid #444;

            .item {
                display: flex;
                flex-direction: column;
                gap: 10px;

                .title {
                    font-size: min(4vw, 14px);
                    font-weight: 600;
                    line-height: 1;
                }

                span {
                    font-size: min(8vw, 30px);
                    font-weight: 600;
                    line-height: 1.5;
                }
            }
        }

        .section-contact-container-02 {
            form {
                .form-content {
                    display: flex;
                    flex-direction: column;
                    gap: var(--COMMON-PADDING-60);
                    padding: var(--COMMON-PADDING-60) var(--COMMON-PADDING) 0;

                    .title {
                        font-size: min(6vw, 20px);
                        font-weight: 600;
                        line-height: 1;
                    }

                    .form-item {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;

                        label {
                            font-size: min(4.5vw, 16px);
                            font-weight: 500;
                            line-height: 1;
                        }

                        input {
                            padding: 0;
                            border-color: transparent;
                            border-bottom-color: #999;
                            border-radius: 0;
                            background-color: transparent;
                        }
                    }

                    &.radio-content {
                        gap: 30px;

                        .form-item {
                            display: flex;
                            flex-direction: row;
                            flex-wrap: wrap;
                            gap: 10px;

                            label {
                                input {
                                    width: auto;
                                    height: auto;

                                    padding: 21px 30px 20px;
                                    border: 1px solid var(--BASE-COLOR-INVERT);
                                    border-radius: 50px;

                                    &::before {
                                        content: attr(data-value);
                                        position: relative;
                                        top: unset;
                                        left: unset;
                                        transform: none;

                                        width: auto;
                                        height: auto;

                                        font-size: min(4.5vw, 16px);
                                        font-weight: 500;
                                        line-height: 1;
                                        text-align: center;

                                        background-color: transparent;
                                        opacity: 1;
                                    }

                                    &::after {
                                        content: none;
                                    }

                                    &:checked {
                                        color: var(--FONT-COLOR-INVERT);
                                        border-color: transparent;
                                        background-color: var(--BASE-COLOR-INVERT);
                                    }
                                }
                            }
                        }
                    }

                    &.textarea-content {
                        gap: 30px;

                        .form-item {
                            textarea {
                                width: 100%;
                                height: 200px;

                                border-radius: 0;
                                background-color: transparent;
                            }
                        }
                    }

                    &.agreement-content {
                        padding-bottom: 40px;

                        label {
                            cursor: pointer;

                            input {
                                border-radius: 0;
                                border-color: #999;

                                &::before,
                                &::after {
                                    background-color: var(--BASE-COLOR);
                                }

                                &:checked {
                                    border-color: transparent;
                                    background-color: var(--BASE-COLOR-INVERT);
                                }
                            }

                            p {
                                font-size: min(4.5vw, 16px);
                                font-weight: 400;
                                line-height: 1;
                                color: #999;
                            }
                        }
                    }
                }

                .form-button {
                    display: grid;
                    padding: 40px var(--COMMON-PADDING) 0;
                    border-top: 1px solid #444;

                    button {
                        justify-self: flex-end;

                        width: 150px;
                        height: auto;

                        font-size: min(6vw, 20px);
                        font-weight: 600;
                        text-align: center;
                        line-height: 1;

                        padding: 21px 0 20px;
                        border: 1px solid var(--BASE-COLOR-INVERT);
                        border-radius: 50px;

                        &:hover {
                            color: var(--FONT-COLOR-INVERT);
                            border-color: transparent;
                            background-color: var(--BASE-COLOR-INVERT);
                        }
                    }
                }
            }
        }

        @media screen and (min-width: 1024px) {
            grid-template-columns: repeat(2, 1fr);

            .section-contact-container-01 {
                gap: 80px;
                padding: var(--COMMON-PADDING-120) 0 0 var(--COMMON-PADDING-60);
                border: 0;

                .item {
                    gap: 20px;

                    .title {
                        font-size: 20px;
                    }

                    span {
                        font-size: min(3vw, 40px);
                    }
                }
            }

            .section-contact-container-02 {
                padding: var(--COMMON-PADDING-120) var(--COMMON-PADDING-60) 0 0;
                border: 0;

                form {
                    .form-content,
                    .form-button {
                        padding-left: 0;
                        padding-right: 0;
                    }

                    .form-content {
                        padding-top: var(--COMMON-PADDING-120);

                        .title {
                            font-size: 30px;
                        }

                        .form-item {
                            label {
                                font-size: 20px;
                            }

                            input {
                                height: 60px;
                            }
                        }

                        &.input-content {
                            padding: 0;
                        }

                        &.radio-content {
                            .form-item {
                                gap: 20px;
                            }
                        }

                        &.agreement-content {
                            padding-bottom: var(--COMMON-PADDING-60);
                        }
                    }

                    .form-button {
                        padding-top: var(--COMMON-PADDING-60);
                    }
                }
            }
        }
    }

/* Board List Page */
    .section-board-list {
        position: relative;
        width: 100%;
        padding: 120px 0 0 !important;
        margin: 0;

        .section-marquee {
            padding-bottom: 30px;
            margin-bottom: 100px;
            border-bottom: 1px solid #444;

            [data-content=marquee] {
                position: relative;
                display: grid;
                width: 100%;
                height: 50px;
                user-select: none;
                overflow: hidden;

                .marquee-content {
                    position: absolute;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    width: max-content;
                    height: 100%;
                    animation: move-left 8s linear infinite;

                    .marquee-item {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        width: fit-content;
                        height: 100%;

                        p {
                            width: max-content;
                            font-size: 40px;
                            font-weight: 500;
                            line-height: 1;
                        }

                        
                        &::after {
                            content: "*";
                            display: block;
                            font-size: 80px;
                            font-weight: 200;
                            line-height: 1;
                            margin-top: 25px;
                        }
                    }
                }
            }

            @media screen and (min-width: 1024px) {
                padding-bottom: 50px;

                [data-content=marquee] {
                    height: 80px;

                    .marquee-content {
                        gap: 30px;

                        .marquee-item {
                            gap: 30px;

                            p {
                                font-size: 90px;
                            }

                            &::after {
                                font-size: 150px;
                                margin-top: 50px;
                            }
                        }
                    }
                }
            }
        }

        #form-category {
            padding: 0 var(--COMMON-PADDING);

            .div-cate {
                display: flex;
                gap: 20px;
                padding: 0 !important;
                margin: 0 !important;

                button {
                    position: relative;
                    width: fit-content;

                    font-size: min(5vw, 20px);
                    font-weight: 500;
                    color: #999;
                    text-decoration: none;

                    border: 0;
                    border-radius: 0;
                    transition: none;

                    &:hover, &:focus {
                        color: #fff;
                    }
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 0 var(--COMMON-PADDING-60);

                .div-cate {
                    gap: 40px;

                    button {
                        font-size: 30px;
                    }
                }
            }
        }

        .section-content {
            position: relative;

            #postList {
                .gal-item {
                    padding: 0 !important;
                    padding-top: 50px !important;

                    .link {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        gap: 20px;

                        width: 100%;
                        height: 100%;

                        .thm {
                            img {
                                filter: none !important;
                            }
                        }

                        .subject {
                            position: relative;
                            top: unset;
                            left: unset;
                            right: unset;
                            bottom: unset;

                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            gap: 10px;

                            width: 100%;
                            height: auto;

                            padding: 0 var(--COMMON-PADDING);

                            text-shadow: none;
                            white-space: unset;
                            overflow: unset;
                            text-overflow: unset;
                            background-color: transparent;

                            .title {
                                font-size: min(5vw, 18px);
                                font-weight: 600;
                                text-align: center;
                            }

                            .category {
                                b {
                                    font-size: 12px;
                                    font-weight: 400;
                                    color: #999;

                                    &:not(:last-of-type)::after {
                                        content: ', ';
                                    }
                                }
                            }
                        }

                        &::after {
                            content: none;
                        }
                    }
                }
            }

            .board-noresult-section {
                padding: 50px var(--COMMON-PADDING) 0;

                .board-noresult {
                    font-size: 14px;
                    font-weight: 400;
                    text-align: center;
                    line-height: 1;
                    color: #999;

                    margin: 0;
                    border: 1px solid #444;
                    border-radius: 0;
                    background-color: transparent;
                }
            }

            .paging-wrap {
                display: none !important;
            }

            @media screen and (min-width: 576px) {
                padding: 0 10px;

                #postList {
                    .gal-item {
                        padding: 50px 5px 0 !important;

                        .link {
                            .subject {
                                padding: 0;

                                .category {
                                    b {
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }

                .board-noresult-section {
                    padding: 50px 5px 0;
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 0 55px;

                .board-noresult-section {
                    padding: 50px 5px 0;
                }
            }
        }

        .paging-wrap {
            display: none;

            .aui-paging {
                .prev, .next, .first, .last {
                    color: transparent !important;
                }
            }
        }

        .aui-flex.board-btn.wrap {
            display: flex;

            width: 100%;
            margin: 0 auto;
            padding: 50px var(--COMMON-PADDING) 0;

            .mui-button {
                width: 100%;

                font-size: min(5vw, 18px);
                font-weight: 500;
                text-align: center;
                color: #999;

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 50px var(--COMMON-PADDING-60) 0;
                justify-content: flex-end;

                .mui-button {
                    width: 150px;
                    height: auto;

                    font-size: 20px;
                    font-weight: 600;

                    padding: 21px 0 20px;
                    border-radius: 50px;
                }
            }
        }
    }

    .section-board-edit,
    .section-board-write {
        position: relative;
        padding: 80px 10px 0;

        .board-header {
            display: none;
        }

        .div-tbl {
            border: 0;

            .ctf-wrap {
                border: 0;
            }
        }

        .aui-flex.board-btn {
            display: flex;
            gap: 0.5rem;
            justify-content: center;

            width: 100%;
            margin: 0 auto;
            padding: 0 10px;

            .mui-button {
                width: 100%;
                font-size: min(3.5vw, 16px);
                font-weight: 500;
                text-align: center;
                color: #999;

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 130px 0 0;

            .aui-flex.board-btn {
                .mui-button {
                    width: fit-content;
                    padding: 0 50px;
                }
            }
        }
    }

    .section-board-read {
        position: relative;
        padding: 80px 10px 0;

        .aui-flex.board-btn {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: space-between;

            width: 100%;
            margin: 0 auto;
            padding: 0 10px;

            .mui-button {
                width: 100%;
                font-size: min(3.5vw, 16px);
                font-weight: 500;
                text-align: center;
                color: #999;

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }

            .group {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 130px 0 0;

            .aui-flex.board-btn {
                flex-direction: row;

                .mui-button {
                    width: fit-content;
                    padding: 0 50px;
                }

                .group {
                    flex-direction: row;
                    width: auto;
                    margin-left: auto;
                }
            }
        }
    }