@charset "utf-8";

/* office-N1 */
.office-N1 {
    width: 100%;
    min-height: 6rem;
    background: var(--white);
    will-change: background, height;
    transition: background 0.3s, min-height 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.office-N1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: opacity 0.3s, visibility 0.3s;
}

.office-N1.top-menu-active {
    padding-top: 6.7rem;
}

.office-N1.gnb-active {
    min-height: 28rem;
}

.office-N1.top-menu-active.gnb-active {
    min-height: calc(28rem + 6.6rem);
}

.office-N1 .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 8rem;
    box-sizing: border-box;
}

.office-N1.top-menu-active .header-container {
    padding-top: 6.7rem;
}

.office-N1 .header-top {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
}

.office-N1 .user-menu {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8rem;
    margin: 0 auto;
}

.office-N1 .user-menu li {
    position: relative;
}

.office-N1 .user-menu li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1.2rem;
    background: #767676;
}

.office-N1 .user-menu li a {
    padding: 2rem 1.2rem;
    text-align: center;
    white-space: nowrap;
}

.office-N1 .user-menu li:last-child a {
    padding: 2rem 0 2rem 1.2rem;
}

.office-N1 .header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.office-N1 .header-title {
    margin-bottom: 0;
}

.office-N1 .header-title a {
    height: 3.2rem;
}

.office-N1 .header-title img {
    height: 100%;
    object-fit: contain;
    vertical-align: top;
}

.office-N1 .header-gnb {
    position: relative;
}

.office-N1 .header-gnblist {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.office-N1 .header-gnbitem {
    position: relative;
}

.office-N1 .header-gnblink {
    height: 100%;
    padding: 2.8rem 3rem;
    text-align: center;
    white-space: nowrap;
    font-weight: var(--fw-medium);
}

.office-N1 .header-gnblink span {
    position: relative;
}

.office-N1 .header-gnblink span::after {
    content: "";
    height: 0.2rem;
    width: 100%;
    transition: 0.3s;
    transform: scaleX(0);
    position: absolute;
    bottom: -100%;
    left: 0;
}

.office-N1 .header-sublist {
    width: 100%;
    position: absolute;
    top: 100%;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.office-N1 .header-gnb:hover .header-sublist {
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transition: opacity 0.3s 0.3s;
}

.office-N1 .header-gnbitem:hover .header-gnblink span::after {
    background: var(--black);
    transform: scaleX(1);
}

.office-N1 .header-subitem {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.office-N1 .header-sublink {
    padding: 1rem;
    width: 100%;
    transition: font-weight 0.3s;
}

.office-N1 .header-subitem:hover .header-sublink {
    font-weight: var(--fw-bold);
}

.office-N1 .header-right {
    display: flex;
    align-items: center;
}

.office-N1 .header-right .header-gnb {
    margin-right: 1.8rem;
}

.office-N1 .header-lang {
    position: relative;
}

.office-N1 .header-langbtn {
    position: relative;
    border: none;
    background: none;
}

.office-N1 .header-langlist {
    position: absolute;
    top: 100%;
    left: -50%;
    z-index: 200;
    background: #111111;
}

.office-N1 .header-langitem {
    max-height: 0;
    transition: all 0.5s;
    overflow: hidden;
}

.office-N1 .header-langitem a {
    padding: 0.6rem 1.6rem;
    opacity: 0.7;
}

.office-N1 .header-langitem a:hover {
    opacity: 1;
}

.office-N1 .header-lang:hover .header-langbtn::after {
    transform: translateY(-50%) rotate(180deg);
}

.office-N1 .header-lang:hover .header-langitem {
    max-height: 6.8rem;
}

.office-N1 .header-utils > ul {
    display: flex;
    align-items: center;
}

.office-N1 .header-utils > ul > li {
    margin-left: 1.2rem;
}

.office-N1 .header-utils > ul > li > img {
    width: auto;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.office-N1 .header-utils img {
    filter: invert(1);
}

.office-N1 .header-right button {
    max-width: 3.2rem;
    background: none;
    border: none;
}

.office-N1 .header-right button img {
    width: auto;
    max-height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.office-N1 .header-utils .member a {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 0;
    display: block;
}

.office-N1 .header-utils .member img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.office-N1 .header-utils .btn-allmenu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.office-N1 .header-utils .btn-allmenu:hover .ico-hamburger:nth-child(2) {
    width: 2.4rem;
}

.office-N1 .header-utils .btn-allmenu .ico-hamburger,
.office-N1 .btn-momenu .ico-hamburger {
    width: 2.4rem;
    height: 0.2rem;
    background: var(--black);
    border-radius: 1rem;
    transition: width 0.3s, transform 0.3s, opacity 0.3s;
    will-change: width, transform, opacity;
}

.office-N1 .header-utils .btn-allmenu .ico-hamburger:nth-child(even),
.office-N1 .btn-momenu .ico-hamburger:nth-child(2) {
    width: 1.4rem;
}

.office-N1 .btn-momenu {
    display: none;
}

.office-N1 .btn-moclose {
    display: none;
}

.office-N1 .header-fullmenu {
    position: fixed;
    z-index: 99999;
    padding: 0 2.4rem;
    background: #000;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.office-N1 .header-fullmenu.fullmenu-right {
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
}

.office-N1 .header-fullmenu.fullmenu-left {
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
}

.office-N1 .header-fullmenu.fullmenu-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.office-N1 .header-fullmenu.fullmenu-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.office-N1 .header-fullmenu.fullmenu-active {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

.office-N1 .fullmenu-wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
}

.office-N1 .fullmenu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10rem;
}

.office-N1 .fullmenu-title {
    margin-bottom: 0;
}

.office-N1 .fullmenu-title a {
    height: 4.3rem;
}

.office-N1 .fullmenu-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-N1 .fullmenu-gnblist {
    display: flex;
    justify-content: center;
}

.office-N1 .fullmenu-gnbitem {
    width: 20%;
}

.office-N1 .fullmenu-gnbitem + .fullmenu-gnbitem {
    margin-left: 4rem;
}

.office-N1 .fullmenu-gnblink {
    position: relative;
    width: 100%;
    padding-bottom: 4rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.office-N1 .fullmenu-gnblink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 0.1rem;
    background: var(--white);
    transition: 0.2s;
}

.office-N1 .fullmenu-gnblink.on::after {
    width: 18rem;
}

.office-N1 .fullmenu-sublist {
    padding-top: 4rem;
}

.office-N1 .fullmenu-subitem + .fullmenu-subitem {
    padding-top: 0.8rem;
}

.office-N1 .fullmenu-sublink {
    color: #a2a2a2;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

.office-N1 .fullmenu-sublink::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    right: 0;
    transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.office-N1 .fullmenu-sublink:hover {
    color: var(--white);
}

.office-N1 .fullmenu-sublink:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.office-N1 .fullmenu-close {
    position: fixed;
    right: 8rem;
    top: 2.4rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
}

.office-N1 .fullmenu-close img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1120px) {
    .office-N1 .header-title a {
        height: 2.4rem;
    }

    .office-N1 .header-gnblink {
        padding: 2.8rem 2.4rem;
    }
}

@media (max-width: 992px) {
    .office-N1 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .office-N1.top-menu-active .header-container {
        padding-top: 0;
    }

    .office-N1.gnb-active,
    .office-N1.top-menu-active.gnb-active {
        min-height: auto;
    }

    .office-N1 .header-gnb {
        width: 100%;
        height: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        overflow: hidden;
        padding: 0 2.4rem;
        transition: height 0.3s;
        z-index: 9;
    }

    .office-N1.block-active .header-gnb {
        height: calc(100vh - 6rem);
        padding-bottom: 19rem;
        overflow-y: auto;
    }

    .office-N1 .header-container {
        min-height: 6rem;
    }

    .office-N1 .header-top {
        border: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s 0.1s, visibilty 0.3s 0.1s;
        will-change: opacity, visibility;
        z-index: 10;
    }

    .office-N1.block-active .header-top {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .office-N1 .user-menu {
        padding: 0 2.2rem;
        justify-content: flex-start;
    }

    .office-N1 .user-menu li a,
    .office-N1 .user-menu li:last-child a {
        padding: 2.4rem 1.2rem;
    }

    .office-N1 .user-menu li:first-child a {
        padding-left: 0;
    }

    .office-N1 .header-title a {
        width: 8.2rem;
        height: 2.6rem;
    }

    .office-N1 .header-center {
        width: 100%;
        height: 0;
        top: 100%;
        left: 0;
        transform: none;
    }

    .office-N1 .header-gnblist {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s 0.1s;
    }

    .office-N1 .header-gnblink {
        display: flex;
        align-items: flex-end;
        width: 100%;
        padding: 1.8rem 0;
        text-align: left;
        transition: border 0.3s;
        will-change: border;
        border-bottom: 1px solid #707070;
    }

    .office-N1.top-menu-active .header-gnbitem:first-child .header-gnblink {
        padding-top: 6.8rem;
    }

    .office-N1 .header-gnbitem:hover .header-gnblink span {
        border: none;
    }

    .office-N1 .header-gnbitem:hover .header-gnblink span::after {
        content: none;
    }

    .office-N1 .header-sublist {
        display: none;
        height: auto;
        position: relative;
        opacity: 1;
        padding: 1.8rem 0 2rem 0;
    }

    .office-N1 .header-gnbitem.item-active .header-gnblink {
        border-bottom: 1px solid var(--black);
    }

    .office-N1 .header-subitem {
        width: 100%;
        text-align: left;
    }

    .office-N1 .header-subitem + .header-subitem {
        padding-top: 0.8rem;
    }

    .office-N1 .header-sublink {
        padding: 0;
        color: var(--text-color3);
    }

    .office-N1 .header-sublink:active {
        color: #111111;
    }

    .office-N1 .header-right button,
    .office-N1 .header-utils .member a {
        width: 2.8rem;
        height: 2.8rem;
    }

    .office-N1 .header-lang:hover .header-langitem {
        max-height: 0;
    }

    .office-N1 .header-lang.lang-active .header-langitem {
        max-height: 6.8rem;
    }

    .office-N1 .header-lang:hover .header-langbtn::after {
        transform: translateY(-50%) rotate(0);
    }

    .office-N1 .header-lang.lang-active .header-langbtn::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .office-N1 .header-utils > ul > li {
        margin-left: 0.6rem;
    }

    .office-N1 .header-utils .allmenu {
        display: none;
    }

    .office-N1 .btn-momenu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.6rem;
        margin-left: 0.6rem;
    }

    .office-N1 .btn-momenu .ico-hamburger {
        width: 2rem;
    }

    .office-N1 .btn-momenu .ico-hamburger:nth-child(2) {
        width: 1.2rem;
    }

    .office-N1.block-active .header-center {
        pointer-events: auto;
    }

    .office-N1.block-active .header-gnblist {
        opacity: 1;
        visibility: visible;
    }

    .office-N1 .header-gnbitem:has(.header-subitem) .header-gnblink::after {
        content: "";
        display: flex;
        width: 1.6rem;
        height: 1.6rem;
        background-image: url(../icons/ico_downarrow_black.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        transition: transform 0.3s;
        will-change: transform;
    }

    .office-N1.block-active .header-gnblink {
        align-items: center;
        justify-content: space-between;
    }

    .office-N1.block-active .header-gnbitem.item-active .header-gnblink::after {
        content: "";
        transform: rotate(180deg);
    }

    .office-N1.block-active .btn-momenu .ico-hamburger:nth-child(1) {
        transform: translateY(0.8rem) rotate(45deg);
    }

    .office-N1.block-active .btn-momenu .ico-hamburger:nth-child(3) {
        transform: translateY(-0.8rem) rotate(-45deg);
    }

    .office-N1.block-active .btn-momenu .ico-hamburger:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }

    .office-N1 .header-fullmenu {
        display: none;
    }
}

/* office-N4 */
.office-N4 {
    overflow: hidden;
    position: relative;
}

.office-N4 .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-N4 .contents-container:not(.fullscreen) {
    height: 76rem;
}

.office-N4 .slide-area {
    width: 100vw;
    height: 100%;
}

.office-N4 .swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
}

.office-N4 .swiper-slide {
    display: flex;
    align-items: center;
    padding: 0 4rem;
}

.office-N4 .thumb {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.office-N4 .thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(var(--black-rgb), 0.4);
    pointer-events: none;
}

.office-N4 .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-N4 .thumb .videoset {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.office-N4 .desc {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
}

.office-N4 .container-lg .desc {
    max-width: 144rem;
}

.office-N4 .container-md .desc {
    max-width: 128rem;
}

.office-N4 .container-sm .desc {
    max-width: 102.4rem;
}

.office-N4 .desc strong {
    display: block;
    color: var(--white);
}

.office-N4 .fixed-area {
    display: flex;
    align-items: flex-end;
    gap: 1.2rem;
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 4rem;
}

.office-N4 .paging-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    padding-bottom: 0.4rem;
}

.office-N4 .paging-item {
    width: 6rem;
}

.office-N4 .paging-item .curr {
    display: block;
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    font-weight: var(--fw-bold);
    transition: opacity 0.3s, visibility 0.3s;
}

.office-N4 .paging-item.active .curr {
    opacity: 1;
    visibility: visible;
}

.office-N4 .paging-item .bar {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0.4rem;
    border-radius: 9rem;
    background: rgba(var(--white-rgb), 0.5);
}

.office-N4 .paging-item .bar .progress {
    width: 0%;
    height: 100%;
    background: var(--white);
}

.office-N4 .paging-item.active .progress.running {
    animation: office-N4-progress 5s linear forwards;
}

.office-N4 .paging-item .bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--white);
}

.office-N4 .paging-item.active .bar::before {
    animation: office-N4-progress 5s linear;
}

.office-N4 .btn-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.office-N4 .btn-wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--white);
}

.office-N4 .swiper-progress button {
    display: none;
}

.office-N4 .swiper-progress button.active {
    display: flex;
}

.office-N4 .scroll {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.4rem;
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: var(--fw-bold);
    z-index: 1;
    animation: office-N4-bounce 1.4s ease-in-out infinite;
}

.office-N4 .scroll::before {
    font-size: 1rem;
}

@keyframes office-N4-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes office-N4-bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 0.8rem);
    }
}

@media (max-width: 1200px) {
    .office-N4 .slide-area {
        width: 100%;
    }

    .office-N4 .swiper {
        margin-left: -4rem;
        width: calc(100% + 8rem);
    }
}

@media (max-width: 992px) {
    .office-N4 .contents-container:not(.fullscreen) {
        height: 60rem;
    }

    .office-N4 .swiper {
        margin-left: -1.6rem;
        width: calc(100% + 3.2rem);
    }

    .office-N4 .swiper-slide,
    .office-N4 .fixed-area {
        padding: 0 1.6rem;
    }

    .office-N4 .fixed-area {
        gap: 0.8rem;
    }

    .office-N4 .paging-wrap {
        gap: 0.4rem;
        padding-bottom: 0.2rem;
    }

    .office-N4 .paging-item {
        width: 3.2rem;
    }

    .office-N4 .paging-item .bar {
        height: 0.4rem;
    }

    .office-N4 .btn-wrap button {
        width: 1rem;
        height: 1rem;
        font-size: 1rem;
        line-height: 1rem;
    }

    .office-N4 .scroll {
        bottom: 8.6rem;
    }
}

/* aboutus */
html {
    overflow-x: hidden;
}

.aboutus {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 20rem;
}

.aboutus .wrap-sticky {
    position: sticky;
    top: calc(50% - 36.2rem);
}

.aboutus .group-title {
    width: 100%;
    margin-bottom: 6rem;
}

.aboutus .group-title h2 {
    margin-bottom: 0.8rem;
}

.aboutus .slide-area {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.aboutus .slide-item {
    display: flex;
    gap: 2.4rem;
    position: relative;
    width: 46.7rem;
    perspective: 3000px;
}

.aboutus .slide-item:nth-child(odd) {
    height: 56rem;
}

.aboutus .slide-item:nth-child(even) {
    height: 40rem;
}

.aboutus .slide-item .front,
.aboutus .slide-item .back {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    backface-visibility: hidden;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.aboutus .slide-item .back {
    transform: rotateY(180deg);
    background: var(--primary);
    pointer-events: none;
}

.aboutus .slide-item .front::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--black-rgb), 0.4);
    pointer-events: none;
}

.aboutus .thumb {
    width: 100%;
    height: 100%;
}

.aboutus .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}

.aboutus .desc {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 4rem;
    height: 100%;
    pointer-events: none;
}

.aboutus .desc h3,
.aboutus .desc strong,
.aboutus .desc p {
    color: var(--white);
    pointer-events: auto;
}

.aboutus .desc h3 {
    margin-bottom: 4rem;
}

.aboutus .desc strong {
    font-weight: var(--fw-bold);
}

.aboutus .desc p {
    flex: 1;
    margin-top: 1.2rem;
}

.aboutus .desc i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 2rem;
    pointer-events: auto;
}

@keyframes office-N7-fadeInAll {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes office-N7-fadeInHead {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 993px) {
    .aboutus .desc > * {
        opacity: 0;
        visibility: hidden;
        animation: none;
    }

    .aboutus .slide-item .desc h3,
    .aboutus .slide-item .desc strong {
        opacity: 1;
        visibility: visible;
    }

    .aboutus .slide-item:hover .front {
        transform: rotateY(-180deg);
    }

    .aboutus .slide-item:hover .back {
        transform: rotateY(0);
    }

    .aboutus .slide-item:hover .desc h3,
    .aboutus .slide-item:hover .desc strong {
        opacity: 0;
        visibility: hidden;
        animation: none;
    }

    .aboutus .slide-item:hover .desc > * {
        animation: office-N7-fadeInAll 0.3s ease 0.8s forwards;
    }

    .aboutus .slide-item:not(:hover) .front {
        transform: rotateY(0);
    }

    .aboutus .slide-item:not(:hover) .back {
        transform: rotateY(180deg);
    }

    .aboutus .slide-item:not(:hover) .desc > * {
        opacity: 0;
        visibility: hidden;
        animation: none;
    }

    .aboutus .slide-item:not(:hover) .desc h3,
    .aboutus .slide-item:not(:hover) .desc strong {
        animation: office-N7-fadeInHead 0.3s ease 0.8s forwards;
    }
}

@media (max-width: 992px) {
    .aboutus {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }

    .aboutus .wrap-sticky {
        overflow: hidden;
        top: calc(50% - 23.6rem);
        margin-left: -1.6rem;
        width: calc(100% + 3.2rem);
    }

    .aboutus .group-title {
        margin-bottom: 4rem;
        padding: 0 1.6rem;
    }

    .aboutus .group-title h2 {
        margin-bottom: 0.4rem;
    }

    .aboutus .slide-area {
        gap: 1.6rem;
        padding: 0 3.2rem 0 1.6rem;
    }

    .aboutus .slide-item {
        width: 28rem;
    }

    .aboutus .slide-item:nth-child(odd) {
        height: 36rem;
    }

    .aboutus .slide-item:nth-child(even) {
        height: 26rem;
    }

    .aboutus .slide-item .front,
    .aboutus .slide-item .back {
        border-radius: 1rem;
    }

    .aboutus .desc {
        padding: 2rem;
    }

    .aboutus .desc h3,
    .aboutus .desc strong,
    .aboutus .desc p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }

    .aboutus .desc h3 {
        -webkit-line-clamp: 1;
        margin-bottom: 2rem;
    }

    .aboutus .slide-item .desc p {
        opacity: 1;
        visibility: visible;
        margin-top: 0.8rem;
    }

    .aboutus .slide-item:nth-child(odd) .desc p {
        -webkit-line-clamp: 10;
    }

    .aboutus .desc strong,
    .aboutus .slide-item:nth-child(even) .desc p {
        -webkit-line-clamp: 2;
    }

    .aboutus .slide-item .desc i {
        display: none;
    }
}

/* glamping-N17 */
.glamping-N17 {
    overflow: hidden;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.glamping-N17 .contents-inner {
    width: 100%;
}

.glamping-N17 .imageset {
    height: 50rem;
}

.glamping-N17 .textset {
    margin-top: 4rem;
}

.glamping-N17 .textset-tit + .textset-desc {
    margin-top: 3rem;
    color: #777777;
    font-weight: var(--fw-regular);
}

@media (max-width: 992px) {
    .glamping-N17 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .glamping-N17 .imageset {
        height: 30rem;
    }

    .glamping-N17 .textset {
        margin-top: 2rem;
    }

    .glamping-N17 .textset-tit + .textset-desc {
        margin-top: 2rem;
    }
}

/* glamping-N18 */
.glamping-N18 {
    overflow: hidden;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.glamping-N18 .contents-inner {
    width: 100%;
}

.glamping-N18 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    align-items: center;
}

.glamping-N18 .wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0.1rem;
    height: 100%;
    min-height: 8rem;
    background-color: #e5e5ec;
}

.glamping-N18 .item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.glamping-N18 .item:first-child {
    padding-right: 6rem;
}

.glamping-N18 .item + .item {
    padding-left: 6rem;
}

.glamping-N18 .desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2.4rem;
}

.glamping-N18 .thumb {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: var(--primary);
}

.glamping-N18 .thumb img {
    width: 4rem;
    height: 4rem;
}

.glamping-N18 .addr span {
    font-weight: var(--fw-regular);
}

.glamping-N18 .desc dt {
    font-weight: var(--fw-bold);
}

.glamping-N18 .desc dd {
    margin: 0;
    color: #242424;
    font-weight: var(--fw-regular);
}

.glamping-N18 .map-area {
    width: 100%;
    margin-top: 8rem;
}

.glamping-N18 .map-area iframe {
    width: 100%;
    height: 50rem;
}

@media (max-width: 992px) {
    .glamping-N18 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .glamping-N18 .wrap {
        display: block;
    }

    .glamping-N18 .wrap::before {
        content: none;
    }

    .glamping-N18 .item {
        gap: 0.8rem;
    }

    .glamping-N18 .item:first-child {
        padding: 0;
    }

    .glamping-N18 .item + .item {
        margin-top: 1.6rem;
        padding: 0;
    }

    .glamping-N18 .thumb {
        width: 6rem;
        height: 6rem;
    }

    .glamping-N18 .thumb img {
        width: 3.2rem;
        height: 3.2rem;
    }

    .glamping-N18 .desc {
        gap: 0.4rem 1.6rem;
    }

    .glamping-N18 .map-area {
        margin-top: 4rem;
    }

    .glamping-N18 .map-area iframe {
        height: 24rem;
    }
}

/* newsletter-N2 */
.newsletter-N2 {
    overflow: hidden;
    position: relative;
    padding-top: 6rem;
    padding-bottom: 2.8rem;
    background: var(--black);
}

.newsletter-N2 .footer-top {
    margin-bottom: 4rem;
}

.newsletter-N2 .footer-logo {
    text-align: center;
}

.newsletter-N2 .footer-logo img {
    height: 5.6rem;
    object-fit: contain;
}

.newsletter-N2 .footer-snslist {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.4rem;
}

.newsletter-N2 .footer-snsitem + .footer-snsitem {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-snslink {
    width: 3.6rem;
    height: 3.6rem;
    padding: 0.6rem;
}

.newsletter-N2 .footer-snslink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-N2 .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.4rem;
    border-top: 1px solid #2b2a2a;
}

.newsletter-N2 .footer-menulist {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-p2);
}

.newsletter-N2 .footer-menulink a {
    padding: 0 1.2rem;
    color: var(--white);
}

.newsletter-N2 .footer-menulink {
    position: relative;
}

.newsletter-N2 .footer-menulink + .footer-menulink::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background: rgba(var(--white-rgb), 0.1);
}

.newsletter-N2 .footer-txt {
    display: flex;
    justify-content: center;
}

.newsletter-N2 .footer-txt + .footer-txt {
    margin-top: 0.3rem;
}

.newsletter-N2 .footer-txt p,
.newsletter-N2 .footer-txt span {
    margin-bottom: 0;
    color: var(--text-color3);
}

.newsletter-N2 .footer-txt p + p {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-txt p span + span {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
    will-change: opacity;
    overflow-y: auto;
    background: rgba(var(--black-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    opacity: 0;
    visibility: hidden;
}

.newsletter-N2 .footer-modal.block-active {
    opacity: 1;
    visibility: visible;
}

.newsletter-N2 .modal-area {
    width: 100%;
    max-width: 92rem;
    background: var(--white);
    border-radius: 0.6rem;
}

.newsletter-N2 .info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem;
    border-bottom: 1px solid var(--line-color1);
}

.newsletter-N2 .modal-close {
    cursor: pointer;
}

.newsletter-N2 .info-area {
    overflow-y: auto;
}

.newsletter-N2 .modal-email .info-area {
    max-height: 17rem;
}

.newsletter-N2 .modal-privacy .info-area {
    max-height: 70.3rem;
}

.newsletter-N2 .info-group + .info-group {
    margin-top: 2.4rem;
}

.newsletter-N2 .info-group strong {
    padding-bottom: 1.2rem;
    display: block;
}

.newsletter-N2 .info-desc {
    max-height: 20.7rem;
    padding: 1.6rem;
    background: #f8f8fa;
    border-radius: 1.6rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.newsletter-N2 .info-desc p.fw-medium {
    font-weight: var(--fw-medium);
}

.newsletter-N2 .info-desc .mtb {
    margin: 2.4rem 0;
}

.newsletter-N2 .info-desc em {
    font-style: normal;
    font-weight: 600;
    margin: 2.4rem 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-N2 .info-list em::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    background: var(--black);
    border-radius: 50%;
    margin-right: 0.8rem;
}

.newsletter-N2 .info-list p {
    padding-left: 1.2rem;
}

@media (max-width: 992px) {
    .newsletter-N2 {
        padding-top: 4rem;
        padding-bottom: 1.6rem;
    }

    .newsletter-N2 .footer-menulink a {
        padding: 0 0.8rem;
    }

    .newsletter-N2 .footer-snslist {
        margin: 1.2rem 0 2.4rem;
    }

    .newsletter-N2 .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
        padding-top: 1.6rem;
        text-align: center;
    }

    .newsletter-N2 .footer-txt {
        flex-direction: column;
    }

    .newsletter-N2 .footer-txt p + p {
        margin-left: 0;
    }

    .newsletter-N2 .footer-txt + .footer-txt {
        margin-top: 0.6rem;
    }
}

@media (max-width: 576px) {
    .newsletter-N2 .footer-menulist {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* lexa-N9 */
.lexa-N9 {
    overflow: hidden;
    position: relative;
    padding-top: 12rem;
    padding-bottom: 6rem;
}

.lexa-N9 .contents-inner {
    width: 100%;
}

.lexa-N9 .textset-tit {
    margin-bottom: 1.6rem;
}

.lexa-N9 .textset-desc {
    margin: 0;
    color: var(--text-color2);
}

@media (max-width: 992px) {
    .lexa-N9 {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
}

/* opilsol-N24 */
.opilsol-N24 {
    overflow: hidden;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.opilsol-N24 .contents-inner {
    width: 100%;
}

.opilsol-N24 .tableset {
    text-align: center;
}

.opilsol-N24 .tableset .tableset-table > thead.thead-light > * > * {
    background: #fff;
}

.opilsol-N24 .tableset .tableset-table > thead.thead-border-top > * > * {
    border-top: 1px solid #111;
    border-bottom: 0;
}

.opilsol-N24 .tableset .tableset-table > tbody > * > td.text-left {
    text-align: left;
}

.opilsol-N24 .tableset tbody {
    border-top: 1px solid var(--border-color);
}

.opilsol-N24 .tableset tbody tr:hover {
    background-color: #fafafa;
}

.opilsol-N24 .tableset tbody td.date {
    color: #bbbbbb;
}

.opilsol-N24 .pagiset {
    margin-top: 8rem;
}

.opilsol-N24 .pagiset.pagiset-line .pagiset-ctrl .pagiset-link::after {
    font-size: 1.8rem;
}

@media (max-width: 992px) {
    .opilsol-N24 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .opilsol-N24 .textset {
        margin-bottom: 2rem;
    }

    .opilsol-N24 .tableset-table {
        min-width: auto;
    }

    .opilsol-N24 .tableset-table .tableset-tit a {
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table {
        display: block;
    }

    .opilsol-N24 .tableset.tableset-fract thead {
        display: none;
    }

    .opilsol-N24 .tableset.tableset-fract tbody {
        display: block;
        border-top: 1px solid #111;
    }

    .opilsol-N24 .tableset.tableset-fract tbody tr {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 1.6rem 0.8rem;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .opilsol-N24 .tableset.tableset-fract tbody tr td {
        padding: 0;
        border: 0;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-mobile {
        display: none;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-tit {
        width: 100%;
        max-width: 100%;
        max-height: 2.4rem;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order01 {
        order: 1;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order02 {
        order: 2;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order03 {
        order: 3;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order04 {
        order: 4;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order05 {
        order: 5;
    }

    .opilsol-N24 .tableset.tableset-fract .tableset-table td.tableset-order06 {
        order: 6;
    }

    .opilsol-N24 .pagiset {
        margin-top: 4rem;
    }

    .opilsol-N24 .pagiset.pagiset-line .pagiset-ctrl .pagiset-link::after {
        font-size: 1.2rem;
    }
}

/* footer_bup */
.newsletter-N2 {
    overflow: hidden;
    position: relative;
    padding-top: 6rem;
    padding-bottom: 2.8rem;
    background: var(--black);
}

.newsletter-N2 .footer-top {
    margin-bottom: 4rem;
}

.newsletter-N2 .footer-logo {
    text-align: center;
}

.newsletter-N2 .footer-logo img {
    height: 5.6rem;
    object-fit: contain;
}

.newsletter-N2 .footer-snslist {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.4rem;
}

.newsletter-N2 .footer-snsitem + .footer-snsitem {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-snslink {
    width: 3.6rem;
    height: 3.6rem;
    padding: 0.6rem;
}

.newsletter-N2 .footer-snslink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-N2 .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.4rem;
    border-top: 1px solid #2b2a2a;
}

.newsletter-N2 .footer-menulist {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-p2);
}

.newsletter-N2 .footer-menulink a {
    padding: 0 1.2rem;
    color: var(--white);
}

.newsletter-N2 .footer-menulink {
    position: relative;
}

.newsletter-N2 .footer-menulink + .footer-menulink::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background: rgba(var(--white-rgb), 0.1);
}

.newsletter-N2 .footer-txt {
    display: flex;
    justify-content: center;
}

.newsletter-N2 .footer-txt + .footer-txt {
    margin-top: 0.3rem;
}

.newsletter-N2 .footer-txt p,
.newsletter-N2 .footer-txt span {
    margin-bottom: 0;
    color: var(--text-color3);
}

.newsletter-N2 .footer-txt p + p {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-txt p span + span {
    margin-left: 0.8rem;
}

.newsletter-N2 .footer-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
    will-change: opacity;
    overflow-y: auto;
    background: rgba(var(--black-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    opacity: 0;
    visibility: hidden;
}

.newsletter-N2 .footer-modal.block-active {
    opacity: 1;
    visibility: visible;
}

.newsletter-N2 .modal-area {
    width: 100%;
    max-width: 92rem;
    background: var(--white);
    border-radius: 0.6rem;
}

.newsletter-N2 .info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem;
    border-bottom: 1px solid var(--line-color1);
}

.newsletter-N2 .modal-close {
    cursor: pointer;
}

.newsletter-N2 .info-area {
    overflow-y: auto;
}

.newsletter-N2 .modal-email .info-area {
    max-height: 17rem;
}

.newsletter-N2 .modal-privacy .info-area {
    max-height: 70.3rem;
}

.newsletter-N2 .info-group + .info-group {
    margin-top: 2.4rem;
}

.newsletter-N2 .info-group strong {
    padding-bottom: 1.2rem;
    display: block;
}

.newsletter-N2 .info-desc {
    max-height: 20.7rem;
    padding: 1.6rem;
    background: #f8f8fa;
    border-radius: 1.6rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.newsletter-N2 .info-desc p.fw-medium {
    font-weight: var(--fw-medium);
}

.newsletter-N2 .info-desc .mtb {
    margin: 2.4rem 0;
}

.newsletter-N2 .info-desc em {
    font-style: normal;
    font-weight: 600;
    margin: 2.4rem 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-N2 .info-list em::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    background: var(--black);
    border-radius: 50%;
    margin-right: 0.8rem;
}

.newsletter-N2 .info-list p {
    padding-left: 1.2rem;
}

@media (max-width: 992px) {
    .newsletter-N2 {
        padding-top: 4rem;
        padding-bottom: 1.6rem;
    }

    .newsletter-N2 .footer-menulink a {
        padding: 0 0.8rem;
    }

    .newsletter-N2 .footer-snslist {
        margin: 1.2rem 0 2.4rem;
    }

    .newsletter-N2 .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
        padding-top: 1.6rem;
        text-align: center;
    }

    .newsletter-N2 .footer-txt {
        flex-direction: column;
    }

    .newsletter-N2 .footer-txt p + p {
        margin-left: 0;
    }

    .newsletter-N2 .footer-txt + .footer-txt {
        margin-top: 0.6rem;
    }
}

@media (max-width: 576px) {
    .newsletter-N2 .footer-menulist {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* opilsol-N25 */
.opilsol-N25 {
    overflow: hidden;
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.opilsol-N25 .contents-inner {
    width: 100%;
}

.opilsol-N25 .contant-header .textset-tit {
    font-weight: var(--fw-medium);
    text-align: center;
}

.opilsol-N25 .contant-header .textset-desc {
    margin-top: 2rem;
    padding-bottom: 2rem;
    color: #bbb;
    text-align: center;
}

.opilsol-N25 .contant-body {
    border-top: 1px solid #111;
    border-bottom: 1px solid #e5e5e5;
    padding: 4rem 0;
}

.opilsol-N25 .contant-bottom .contant-nav {
    display: flex;
    align-items: center;
    padding: 1.5rem 2.4rem;
    gap: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.opilsol-N25 .contant-bottom .contant-nav .nav-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.opilsol-N25 .contant-bottom .contant-nav .nav-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.opilsol-N25 .contant-bottom .contant-nav .nav-btn i::before {
    font-size: 1.8rem;
    color: var(--black);
}

.opilsol-N25 .contant-bottom .contant-nav .nav-btn span {
    color: var(--text-color3);
}

.opilsol-N25 .contant-bottom .contant-nav p {
    gap: 0.4rem;
    color: var(--text-color3);
}

.opilsol-N25 .contant-bottom .contant-nav p img {
    transform: rotate(-90deg);
    width: 2.4rem;
    height: 2.4rem;
}

.opilsol-N25 .contant-bottom .con-link-btn {
    position: relative;
    padding: 0 2rem 0 3rem;
    color: var(--text-color3);
    text-align: center;
    border: 0 none;
    background-color: transparent;
}

.opilsol-N25 .contant-bottom .con-link-btn::before {
    content: "\e900";
    display: inline-block;
    position: absolute;
    left: -0.5rem;
    top: 50%;
    right: 2.4rem;
    transform: translateY(-50%);
    width: 2.8rem;
    height: 2.8rem;
    color: #111;
}

.opilsol-N25 .contant-bottom .con-link-btn.prve::before {
    transform: translateY(-50%) rotate(-180deg);
}

.opilsol-N25 .contant-bottom .con-link {
    overflow: hidden;
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: var(--fw-medium);
    color: #111;
}

.opilsol-N25 .contant-bottom .con-link + span {
    color: #bbbbbb;
}

.opilsol-N25 .bottom-btn {
    margin-top: 6rem;
    text-align: center;
}

@media (max-width: 992px) {
    .opilsol-N25 .contant-header .textset-desc {
        margin-top: 0.8rem;
    }

    .opilsol-N25 .contant-body {
        padding: 2rem 0 4rem;
    }

    .opilsol-N25 .contant-bottom .contant-nav {
        padding: 1.4rem 0 1.4rem 1.6rem;
        gap: 0.8rem;
    }

    .opilsol-N25 .contant-bottom .contant-nav p img {
        width: 2rem;
        height: 2rem;
    }

    .opilsol-N25 .contant-bottom .con-link + span {
        padding-left: 2.2rem;
    }

    .opilsol-N25 .bottom-btn {
        margin-top: 4rem;
    }
}

.board-contents img {
    max-width: 100%;
    height: auto;
}