@charset "utf-8";

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

.butti-N1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s, visibility 0.3s
}

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

.butti-N1.header-top-active {
    background: transparent
}

.butti-N1.header-top-active::after {
    opacity: 1;
    visibility: visible
}

.butti-N1.header-top-active:hover {
    background: rgba(0, 0, 0, 0.7)
}

.butti-N1.header-top-active:hover::after {
    opacity: 0;
    visibility: hidden
}

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

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

.butti-N1.block-active {
    background: #000 !important
}

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

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

.butti-N1 .header-top {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #111
}

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

.butti-N1 .user-menu li {
    position: relative
}

.butti-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
}

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

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

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

.butti-N1 .header-title {
    margin-bottom: 0
}

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

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

.butti-N1 .header-gnb {
    position: relative
}

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

.butti-N1 .header-gnbitem {
    position: relative
}

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

.butti-N1 .header-gnblink span {
    position: relative
}

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

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

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

.butti-N1 .header-gnbitem:hover .header-gnblink span::after {
    background: #fff;
    transform: scaleX(1)
}

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

.butti-N1 .header-subitem:hover {
    color: #fff
}

.butti-N1 .header-sublink {
    width: 100%;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s, background 0.2s;
    will-change: color, background
}

.butti-N1 .header-sublink:hover {
    color: #fff
}

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

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

.butti-N1 .header-lang {
    position: relative
}

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

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

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

.butti-N1 .header-langitem a {
    padding: 0.6rem 1.6rem;
    color: var(--white);
    opacity: 0.7
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.butti-N1 .header-utils .btn-allmenu .ico-hamburger,
.butti-N1 .btn-momenu .ico-hamburger {
    width: 2.4rem;
    height: 0.2rem;
    background: #fff;
    border-radius: 1rem;
    transition: width 0.3s, transform 0.3s, opacity 0.3s;
    will-change: width, transform, opacity
}

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

.butti-N1 .btn-momenu {
    display: none
}

.butti-N1 .btn-moclose {
    display: none
}

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

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

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

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

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

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

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

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

.butti-N1 .fullmenu-title {
    margin-bottom: 0
}

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

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

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

.butti-N1 .fullmenu-gnbitem {
    width: 20%
}

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

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

.butti-N1 .fullmenu-gnblink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 0.1rem;
    background: #ffffff;
    transition: 0.2s
}

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

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

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

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

.butti-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)
}

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

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

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

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

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

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

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

    .butti-N1.header-top-active:hover {
        background: transparent
    }

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

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

    .butti-N1.header-top-active:hover::after {
        opacity: 1;
        visibility: visible
    }

    .butti-N1 .header-gnb {
        width: 100%;
        height: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background: #111;
        overflow: hidden;
        padding: 0 2.4rem;
        transition: height 0.3s;
        z-index: 9
    }

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

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

    .butti-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
    }

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

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

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

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

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

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

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

    .butti-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
    }

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

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

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

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

    .butti-N1 .header-gnbitem.item-active .header-gnblink {
        border-bottom: 1px solid #fff
    }

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

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

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

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

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

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

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

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

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

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

    .butti-N1 .header-utils .allmenu {
        display: none
    }

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

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

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

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

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

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

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

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

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

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

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

    .butti-N1 .header-fullmenu {
        display: none
    }
}
/* campland-N3 */
.campland-N3 {
    overflow: hidden;
    position: relative
}

.campland-N3 .contents-container {
    display: flex;
    justify-content: center;
    height: 80rem
}

.campland-N3 .slide-area {
    width: 100vw;
    height: 100%
}

.campland-N3 .swiper {
    width: 100vw;
    height: 100%
}

.campland-N3 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.campland-N3 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.campland-N3 .contents-slide-group {
    position: absolute;
    text-align: center
}

.campland-N3 .textset {
    position: relative;
    margin-bottom: 3rem;
    text-align: left
}

.campland-N3 .textset strong {
    color: #fff
}

.campland-N3 .btnset {
    font-weight: var(--fw-medium)
}

.campland-N3 .contents-control {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4.5rem;
    z-index: 20
}

.campland-N3 .swiper-button-prev,
.campland-N3 .swiper-button-next {
    width: 5.4rem;
    height: 5.4rem;
    background: rgba(var(--black-rgb), 0.8) center/2.8rem no-repeat url(../icons/ico_arrow_left_withe.svg);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s
}

.campland-N3 .swiper-button-prev {
    left: 8.2rem
}

.campland-N3 .swiper-button-next {
    right: 8.2rem;
    transform: rotate(180deg)
}

.campland-N3 .swiper-button-prev::after,
.campland-N3 .swiper-button-next::after {
    content: none
}

.campland-N3 .swiper-button-prev:hover,
.campland-N3 .swiper-button-next:hover {
    opacity: 1
}

.campland-N3 .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5.6rem;
    left: 0;
    bottom: 0;
    margin-right: 1.6rem
}

.campland-N3 .swiper-pagination-bullet {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 !important;
    background-color: transparent;
    opacity: 1;
    border: 2px solid var(--white)
}

.campland-N3 .swiper-pagination-bullet+.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 1.6rem);
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--white);
    border-radius: 50%
}

.campland-N3 .swiper-pagination-bullet+.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 3.6rem);
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--white);
    border-radius: 50%
}

.campland-N3 .swiper-pagination-bullet-active {
    background-color: var(--white)
}

.campland-N3 .swiper-button-play {
    display: none
}

.campland-N3 .swiper-button-play,
.campland-N3 .swiper-button-pause {
    position: relative;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    opacity: 0.5;
    background: transparent;
    transition: 0.3s;
    cursor: pointer
}

.campland-N3 .swiper-button-play img,
.campland-N3 .swiper-button-pause img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top
}

.campland-N3 .swiper-button-play:hover,
.campland-N3 .swiper-button-pause:hover {
    opacity: 1
}

@media (max-width: 1200px) {
    .campland-N3 .swiper {
        margin-left: -4rem;
        width: calc(100% + 8rem)
    }
}

@media (max-width: 992px) {
    .campland-N3 .contetns-continaer {
        height: 60rem
    }

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

    .campland-N3 .textset {
        margin-bottom: 2rem
    }

    .campland-N3 .textset::after {
        top: 3rem;
        max-width: 6rem;
        height: 0.3rem
    }

    .campland-N3 .contents-control {
        bottom: 4rem
    }

    .campland-N3 .swiper-pagination {
        gap: 0.8rem;
        margin-right: 0.8rem
    }

    .campland-N3 .swiper-button-next,
    .campland-N3 .swiper-button-prev {
        display: none
    }

    .campland-N3 .swiper-pagination-bullet {
        width: 0.8rem;
        height: 0.8rem
    }

    .campland-N3 .swiper-pagination-bullet+.swiper-pagination-bullet::before,
    .campland-N3 .swiper-pagination-bullet+.swiper-pagination-bullet::after {
        content: none
    }

    .campland-N3 .swiper-button-play,
    .campland-N3 .swiper-button-pause {
        width: 1.6rem;
        height: 1.6rem
    }
}
/* basic-N6 */
.basic-N6 {
    position: relative;
    overflow: hidden
}

.basic-N6 .textset {
    text-align: center;
    margin-bottom: 0
}

.basic-N6 .textset-desc {
    color: var(--text-color3)
}

@media (max-width: 992px) {
    .basic-N6 .textset .textset-tit+.textset-desc {
        margin-top: 2rem
    }

    .basic-N6 .textset-desc {
        word-break: keep-all
    }

    .basic-N6 .textset-desc br {
        display: none
    }
}
/* basic-N6 [iOMC3646k9] */
.basic-N6[id='iOMC3646k9'] {
    padding-top: 8rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .basic-N6[id='iOMC3646k9'] {
        padding-top: 3rem;
        padding-bottom: 0rem
    }
}
/* basic-N6 [sxMc8U85Fu] */
.basic-N6[id='sxMc8U85Fu'] {
    padding-top: 3rem;
    padding-bottom: 3rem
}

@media (max-width: 992px) {
    .basic-N6[id='sxMc8U85Fu'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* basic-N6 [GAmc9wYt14] */
.basic-N6[id='GAmc9wYt14'] {
    padding-top: 3rem;
    padding-bottom: 3rem
}

@media (max-width: 992px) {
    .basic-N6[id='GAmc9wYt14'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* basic-N6 [lKMC9XszZo] */
.basic-N6[id='lKMC9XszZo'] {
    padding-top: 3rem;
    padding-bottom: 3rem
}

@media (max-width: 992px) {
    .basic-N6[id='lKMC9XszZo'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* basic-N6 [xpmCiOo7dB] */
.basic-N6[id='xpmCiOo7dB'] {
    padding-top: 3rem;
    padding-bottom: 3rem
}

@media (max-width: 992px) {
    .basic-N6[id='xpmCiOo7dB'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* butti-N6 */
.butti-N6 {
    overflow: hidden;
    position: relative
}

.butti-N6 .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80rem
}

.butti-N6 .videoset {
    width: 100%;
    height: 100%
}

.butti-N6 .videoset-button {
    height: 100%;
    text-align: center
}

.butti-N6 .videoset-button .videoset-icon {
    cursor: auto
}

.butti-N6 .videoset .videoset-tit {
    margin-bottom: 4.2rem
}

.butti-N6 .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 992px) {
    .butti-N6 .contents-container {
        height: 50rem
    }

    .butti-N6 .videoset,
    .butti-N6 .videoset-button {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem
    }

    .butti-N6 .videoset .videoset-tit {
        margin-bottom: 3.3rem
    }
}
/* butti-N6 [nzmC36m2fE] */
.butti-N6[id='nzmC36m2fE'] {
    padding-top: 8rem;
    padding-bottom: 8rem
}

@media (max-width: 992px) {
    .butti-N6[id='nzmC36m2fE'] {
        padding-top: 5rem;
        padding-bottom: 5rem
    }
}
/* butti-N6 [IOmC4R5V1i] */
.butti-N6[id='IOmC4R5V1i'] {
    padding-top: 2rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .butti-N6[id='IOmC4R5V1i'] {
        padding-top: 2rem;
        padding-bottom: 0rem
    }
}
/* butti-N6 [aimC9Xt90j] */
.butti-N6[id='aimC9Xt90j'] {
    padding-top: 2rem;
    padding-bottom: 3rem
}

@media (max-width: 992px) {
    .butti-N6[id='aimC9Xt90j'] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* butti-N6 [zVmc8MuGgx] */
.butti-N6[id='zVmc8MuGgx'] {
    padding-top: 2rem;
    padding-bottom: 2rem
}

@media (max-width: 992px) {
    .butti-N6[id='zVmc8MuGgx'] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* temhamain1-N4 */
.temhamain1-N4 {
    position: relative;
    padding-top: 0rem;
    padding-bottom: 12rem;
    overflow: hidden
}

.temhamain1-N4 .contents-inner {
    width: 100%
}

.temhamain1-N4 .contents-tit {
    margin-bottom: 8rem;
    text-align: center
}

.temhamain1-N4 .cardset-list {
    display: flex;
    gap: 4rem
}

.temhamain1-N4 .cardset-item {
    width: calc(100% / 3)
}

.temhamain1-N4 .cardset-figure {
    width: 11rem;
    height: 7.2rem;
    margin: 0 auto
}

.temhamain1-N4 .cardset-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.temhamain1-N4 .cardset-body {
    margin-top: 2.4rem;
    letter-spacing: -0.05rem;
    text-align: center
}

.temhamain1-N4 .cardset-tit+.cardset-desc {
    margin-top: 1.2rem
}

.temhamain1-N4 .cardset-desc {
    color: #767676
}

@media (max-width: 992px) {
    .temhamain1-N4 {
        padding-top: 0rem;
        padding-bottom: 10rem
    }

    .temhamain1-N4 .contents-tit {
        margin-bottom: 4rem
    }

    .temhamain1-N4 .cardset-list {
        flex-direction: column;
        align-items: flex-start
    }

    .temhamain1-N4 .cardset-item {
        width: 100%
    }

    .temhamain1-N4 .cardset-figure {
        width: 9rem;
        height: 6rem
    }

    .temhamain1-N4 .cardset-body {
        margin-top: 2rem
    }

    .temhamain1-N4 .cardset-tit {
        font-size: 2rem;
        line-height: 3rem
    }

    .temhamain1-N4 .cardset-tit+.cardset-desc {
        margin-top: 0.8rem
    }
}
/* contest-N4 */
body {
    position: relative
}

.contest-N4 {
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 2rem;
    z-index: 99;
    pointer-events: none;
    width: 100%
}

.contest-N4 .contents-container {
    width: 100%
}

.contest-N4 .contents-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 56rem;
    min-height: 8rem;
    border: 1px solid var(--secondary);
    border-radius: 0.6rem;
    background: #fff;
    box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
    pointer-events: auto
}

.contest-N4 .contents-inner h2 {
    flex: 1;
    font-weight: var(--fw-medium)
}

.contest-N4 .contents-inner .btnset {
    flex-shrink: 0
}

@media (max-width: 992px) {
    .contest-N4 .contents-inner {
        gap: 0.8rem;
        padding: 1.6rem 1.2rem;
        min-height: 0
    }
}
/* contest-N4 [KOmC4JLRt2] */
.contest-N4[id='KOmC4JLRt2'] {
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .contest-N4[id='KOmC4JLRt2'] {
        padding-bottom: 0rem
    }
}
/* temhafull1-N2 */
.temhafull1-N2 {
    position: relative;
    background: #111111;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden
}

.temhafull1-N2 .footer-container {
    display: flex;
    justify-content: space-between
}

.temhafull1-N2 .footer-left {
    display: flex
}

.temhafull1-N2 .footer-content {
    width: 100%;
    margin-left: 4rem
}

.temhafull1-N2 .footer-logo {
    margin-bottom: 0
}

.temhafull1-N2 .footer-logo img {
    height: 1.8rem;
    object-fit: contain
}

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

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

.temhafull1-N2 .footer-menulink+.footer-menulink a {
    padding-left: 1.2rem
}

.temhafull1-N2 .footer-menulink {
    position: relative
}

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

.temhafull1-N2 .footer-txtgroup {
    margin-top: 1.2rem
}

.temhafull1-N2 .footer-sns {
    display: flex;
    align-items: center
}

.temhafull1-N2 .footer-snslist {
    display: flex;
    align-items: center
}

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

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

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

.temhafull1-N2 .footer-bottom {
    margin-top: 1.2rem
}

.temhafull1-N2 .footer-txt {
    display: flex
}

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

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

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

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

.temhafull1-N2 .footer-txt span {
    color: var(--text-color3)
}

.temhafull1-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(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem;
    opacity: 0;
    visibility: hidden
}

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

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

.temhafull1-N2 .info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem;
    border-bottom: 1px solid #e5e5e5
}

.temhafull1-N2 .modal-close {
    cursor: pointer
}

.temhafull1-N2 .info-area {
    overflow-y: auto
}

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

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

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

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

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

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

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

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

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

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

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

    .temhafull1-N2 .footer-container {
        flex-direction: column
    }

    .temhafull1-N2 .footer-left {
        flex-direction: column
    }

    .temhafull1-N2 .footer-content {
        flex-direction: column;
        margin: 2.4rem 0 1.2rem
    }

    .temhafull1-N2 .footer-txt {
        flex-direction: column
    }

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

    .temhafull1-N2 .footer-txt p+p {
        margin-left: 0
    }
}
/* campland-N8 */
.campland-N8 {
    overflow: hidden;
    position: relative
}

.campland-N8 .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48rem
}

.campland-N8 h2 {
    color: var(--white);
    font-weight: var(--fw-medium)
}

@media (max-width: 992px) {
    .campland-N8 .contents-container {
        height: 40rem
    }
}
/* campland-N8 [VaMc4kIowU] */
.campland-N8[id='VaMc4kIowU'] {
    background: url(../images/class.jpg) no-repeat center/cover
}
/* campland-N8 [hImC8Q3z3t] */
.campland-N8[id='hImC8Q3z3t'] {
    background: url(../images/curr.jpg) no-repeat center/cover
}
/* campland-N8 [zxMCbDA5n9] */
.campland-N8[id='zxMCbDA5n9'] {
    background: url(../images/pri.jpg) no-repeat center/cover
}
/* campland-N8 [wvmc5Qg8gT] */
.campland-N8[id='wvmc5Qg8gT'] {
    background: url(../images/bohe.jpg) no-repeat center/cover
}
/* campland-N8 [FtMC8kKo4K] */
.campland-N8[id='FtMC8kKo4K'] {
    background: url(../images/ciny.jpg) no-repeat center/cover
}
/* campland-N8 [KhmCA1fxG2] */
.campland-N8[id='KhmCA1fxG2'] {
    background: url(../images/perfo.jpg) no-repeat center/cover
}
/* campland-N8 [hjMCa5LK4r] */
.campland-N8[id='hjMCa5LK4r'] {
    background: url(../images/faq.jpg) no-repeat center/cover
}
/* basic-N11_copy */
.basic-N11_copy {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 0rem
}

.basic-N11_copy .textset {
    margin-bottom: 0;
    text-align: center
}

.basic-N11_copy .textset .textset-tit {
    font-weight: 400
}

@media (max-width: 992px) {
    .basic-N11_copy {
        padding-top: 1rem;
        padding-bottom: 0rem
    }
}
/* basic-N11_copy2 */
.basic-N11_copy2 {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 0rem
}

.basic-N11_copy2 .textset {
    margin-bottom: 0;
    text-align: center
}

.basic-N11_copy2 .textset .textset-tit {
    font-weight: 400
}

@media (max-width: 992px) {
    .basic-N11_copy2 {
        padding-top: 1rem;
        padding-bottom: 0rem
    }
}
/* basic-N11 */
.basic-N11 {
    position: relative
}

.basic-N11 .textset {
    margin-bottom: 0;
    text-align: center
}

.basic-N11 .textset .textset-tit {
    font-weight: 400
}
/* basic-N11 [jamC4oGrwM] */
.basic-N11[id='jamC4oGrwM'] {
    padding-top: 3rem;
    padding-bottom: 8rem
}

@media (max-width: 992px) {
    .basic-N11[id='jamC4oGrwM'] {
        padding-top: 2rem;
        padding-bottom: 5rem
    }
}
/* basic-N11 [Mgmca7n3eu] */
.basic-N11[id='Mgmca7n3eu'] {
    padding-top: 5rem;
    padding-bottom: 5rem
}

@media (max-width: 992px) {
    .basic-N11[id='Mgmca7n3eu'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* basic-N11 [AUmC5wEQ3t] */
.basic-N11[id='AUmC5wEQ3t'] {
    padding-top: 0rem;
    padding-bottom: 5rem
}

@media (max-width: 992px) {
    .basic-N11[id='AUmC5wEQ3t'] {
        padding-top: 0rem;
        padding-bottom: 3rem
    }
}
/* basic-N11 [gmMcBeTZvL] */
.basic-N11[id='gmMcBeTZvL'] {
    padding-top: 8rem;
    padding-bottom: 8rem
}

@media (max-width: 992px) {
    .basic-N11[id='gmMcBeTZvL'] {
        padding-top: 5rem;
        padding-bottom: 5rem
    }
}
/* basic-N11 [lwMcIOk1uh] */
.basic-N11[id='lwMcIOk1uh'] {
    padding-top: 2rem;
    padding-bottom: 2rem
}

@media (max-width: 992px) {
    .basic-N11[id='lwMcIOk1uh'] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* butti-N24 */
.butti-N24 {
    overflow: hidden;
    position: relative
}

.butti-N24 .contents-inner {
    width: 100%
}

.butti-N24 .cardset.cardset-hor {
    align-items: center
}

.butti-N24 .cardset.cardset-hor .cardset-figure {
    flex: 1;
    width: auto;
    height: 40rem
}

.butti-N24 .cardset.cardset-hor .cardset-body {
    flex: 1;
    margin-left: 4rem;
    padding: 0
}

.butti-N24 .cardset.cardset-hor+.cardset.cardset-hor {
    margin-top: 10rem
}

.butti-N24 .cardset .cardset-desc {
    overflow: visible;
    -webkit-line-clamp: inherit;
    color: #777;
    font-weight: var(--fw-regular)
}

.butti-N24 .cardset .cardset-tit+.cardset-desc,
.cardset .cardset-desc+.cardset-txt {
    margin: 2rem 0 0
}

@media (max-width: 992px) {
    .butti-N24 .cardset.cardset-hor+.cardset.cardset-hor {
        margin-top: 4rem
    }

    .butti-N24 .cardset.cardset-hor .cardset-figure {
        width: 100%;
        height: 24rem
    }

    .butti-N24 .cardset.cardset-hor .cardset-body {
        margin: 2rem 0 0 0;
        width: 100%
    }

    .butti-N24 .cardset.cardset-xl .cardset-tit+.cardset-desc {
        margin-top: 0.8rem
    }
}
/* butti-N24 [simc4oLnEp] */
.butti-N24[id='simc4oLnEp'] {
    padding-top: 0rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .butti-N24[id='simc4oLnEp'] {
        padding-top: 0rem;
        padding-bottom: 0rem
    }
}
/* butti-N24 [Qemc5Qh13O] */
.butti-N24[id='Qemc5Qh13O'] {
    padding-top: 6rem;
    padding-bottom: 4rem
}

@media (max-width: 992px) {
    .butti-N24[id='Qemc5Qh13O'] {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}
/* butti-N24 [CLMc8LFxCF] */
.butti-N24[id='CLMc8LFxCF'] {
    padding-top: 6rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .butti-N24[id='CLMc8LFxCF'] {
        padding-top: 2rem;
        padding-bottom: 0rem
    }
}
/* personal-SoMclmwsrP */
.personal-SoMclmwsrP {
  overflow: hidden;
  position: relative;
  padding-bottom: 0rem;
  padding-top: 5rem;
}

.personal-SoMclmwsrP .contents-inner {
  width: 100%;
}

.personal-SoMclmwsrP h2 {
  margin-bottom: 3rem;
}

.personal-SoMclmwsrP .link-area {
  display: flex;
  border: 1px solid var(--border-color);
}

.personal-SoMclmwsrP .link {
  flex: 1;
}

.personal-SoMclmwsrP .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding: 3.5rem;
}

.personal-SoMclmwsrP .link:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 7rem);
  background: var(--border-color);
}

.personal-SoMclmwsrP .thumb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  background: #e9e9e9;
  border-radius: 50%;
  transition: background .3s;
}

.personal-SoMclmwsrP .link a:hover .thumb {
  background: var(--primary);
}

.personal-SoMclmwsrP .thumb img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  transition: filter .3s;
}

.personal-SoMclmwsrP .link a:hover img {
  filter: invert(1) brightness(2);
}

.personal-SoMclmwsrP .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: color .3s;
}

.personal-SoMclmwsrP .link a:hover strong {
  color: var(--primary);
}

.personal-SoMclmwsrP .desc span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--text-color3);
  font-weight: var(--fw-bold);
}

.personal-SoMclmwsrP .link i {
  display: none;
  margin-left: auto;
}

@media (max-width: 992px) {
  .personal-SoMclmwsrP {
    padding-bottom: 0rem;
    padding-top: 3rem;
  }

  .personal-SoMclmwsrP h2 {
    text-align: center;
  }

  .personal-SoMclmwsrP .link-area {
    flex-direction: column;
  }

  .personal-SoMclmwsrP .link a {
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .personal-SoMclmwsrP .link+.link {
    border-top: 1px solid var(--border-color);
  }

  .personal-SoMclmwsrP .link:not(:first-child) a::before {
    content: none;
  }

  .personal-SoMclmwsrP .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .personal-SoMclmwsrP .thumb img {
    width: 3.1rem;
    height: 3.1rem;
  }

  .personal-SoMclmwsrP .link i {
    display: block;
  }
}
/* butti-N19 */
.butti-N19 {
    overflow: hidden;
    position: relative;
    padding-top: 0rem;
    padding-bottom: 0rem
}

.butti-N19 .contents-inner {
    width: 100%
}

.butti-N19 .thumb-area {
    display: flex;
    justify-content: center;
    width: 100%
}

.butti-N19 .imageset {
    width: 100vw;
    height: 50rem
}

.butti-N19 .imageset img {
    width: 100vw
}

.butti-N19 .textset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 9rem;
    margin-top: 8rem
}

.butti-N19 .textset-cont p {
    color: #777777;
    font-weight: var(--fw-regular)
}

@media (max-width: 992px) {
    .butti-N19 {
        padding-top: 0rem;
        padding-bottom: 0rem
    }

    .butti-N19 .thumb-area {
        display: block
    }

    .butti-N19 .imageset {
        margin-left: -1.6rem;
        width: calc(100% + 3.2rem);
        height: 34rem
    }

    .butti-N19 .imageset img {
        width: 100%
    }

    .butti-N19 .textset {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem
    }
}
/* butti-N14 */
.butti-N14 {
    overflow: hidden;
    position: relative;
    background: url(../images/good.jpg) no-repeat center/cover
}

.butti-N14 .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48rem
}

.butti-N14 h2 {
    color: var(--white);
    text-align: center
}

@media (max-width: 992px) {
    .butti-N14 .contents-container {
        height: 26rem
    }
}
/* butti-N15 */
.butti-N15 {
    overflow: hidden;
    position: relative
}

.butti-N15 .list-area {
    width: 100%
}

.butti-N15 .item {
    display: flex;
    align-items: flex-end;
    gap: 4rem
}

.butti-N15 .item:nth-child(even) {
    flex-direction: row-reverse
}

.butti-N15 .item+.item {
    margin-top: 10rem
}

.butti-N15 .thumb {
    flex: 1;
    position: relative;
    margin: 0;
    height: 70rem;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.2), transparent)
}

.butti-N15 .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.butti-N15 .thumb figcaption {
    position: absolute;
    left: 4rem;
    bottom: 3.8rem;
    color: var(--white)
}

.butti-N15 .desc {
    flex: 1
}

.butti-N15 .desc p {
    margin-top: 3rem;
    color: #777777
}

@media (max-width: 992px) {
    .butti-N15 .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem
    }

    .butti-N15 .item:nth-child(even) {
        flex-direction: column
    }

    .butti-N15 .item+.item {
        margin-top: 6rem
    }

    .butti-N15 .thumb,
    .butti-N15 .item {
        flex: none;
        width: 100%
    }

    .butti-N15 .thumb {
        height: 40rem
    }

    .butti-N15 .thumb figcaption {
        left: 2rem;
        bottom: 2rem
    }

    .butti-N15 .desc p {
        margin-top: 2rem
    }
}
/* butti-N15 [uSMC5H1Kfw] */
.butti-N15[id='uSMC5H1Kfw'] {
    padding-top: 2rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .butti-N15[id='uSMC5H1Kfw'] {
        padding-top: 1rem;
        padding-bottom: 0rem
    }
}
/* butti-N15 [RhMC5ldPAa] */
.butti-N15[id='RhMC5ldPAa'] {
    padding-top: 2rem;
    padding-bottom: 0rem
}

@media (max-width: 992px) {
    .butti-N15[id='RhMC5ldPAa'] {
        padding-top: 1rem;
        padding-bottom: 0rem
    }
}
/* butti-N15 [OeMc8lX0TH] */
.butti-N15[id='OeMc8lX0TH'] {
    padding-top: 8rem;
    padding-bottom: 2rem
}

@media (max-width: 992px) {
    .butti-N15[id='OeMc8lX0TH'] {
        padding-top: 3rem;
        padding-bottom: 2rem
    }
}
/* vlx2024 */
.vlx2024 {
    overflow: hidden;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 0rem
}

.vlx2024 .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80rem
}

.vlx2024 .videoset {
    width: 100%;
    height: 100%
}

.vlx2024 .videoset-button {
    height: 100%;
    text-align: center
}

.vlx2024 .videoset-button .videoset-icon {
    cursor: auto
}

.vlx2024 .videoset .videoset-tit {
    margin-bottom: 4.2rem
}

.vlx2024 .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 992px) {
    .vlx2024 {
        padding-top: 2rem;
        padding-bottom: 0rem
    }

    .vlx2024 .contents-container {
        height: 50rem
    }

    .vlx2024 .videoset,
    .vlx2024 .videoset-button {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem
    }

    .vlx2024 .videoset .videoset-tit {
        margin-bottom: 3.3rem
    }
}
/* oldschool */
.oldschool {
    overflow: hidden;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 2rem
}

.oldschool .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80rem
}

.oldschool .videoset {
    width: 100%;
    height: 100%
}

.oldschool .videoset-button {
    height: 100%;
    text-align: center
}

.oldschool .videoset-button .videoset-icon {
    cursor: auto
}

.oldschool .videoset .videoset-tit {
    margin-bottom: 4.2rem
}

.oldschool .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 992px) {
    .oldschool {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .oldschool .contents-container {
        height: 50rem
    }

    .oldschool .videoset,
    .oldschool .videoset-button {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem
    }

    .oldschool .videoset .videoset-tit {
        margin-bottom: 3.3rem
    }
}
/* personal-lMmcD6mG49 */
body {
    position: relative
}

.personal-lMmcD6mG49 {
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 2rem;
    z-index: 99;
    pointer-events: none;
    width: 100%
}

.personal-lMmcD6mG49 .contents-container {
    width: 100%
}

.personal-lMmcD6mG49 .contents-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 56rem;
    min-height: 8rem;
    border: 1px solid var(--secondary);
    border-radius: 0.6rem;
    background: #fff;
    box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
    pointer-events: auto
}

.personal-lMmcD6mG49 .contents-inner h2 {
    flex: 1;
    font-weight: var(--fw-medium)
}

.personal-lMmcD6mG49 .contents-inner .btnset {
    flex-shrink: 0
}

@media (max-width: 992px) {
    .personal-lMmcD6mG49 .contents-inner {
        gap: 0.8rem;
        padding: 1.6rem 1.2rem;
        min-height: 0
    }
}
/* basic-N31 */
.basic-N31 {
    position: relative;
    overflow: hidden
}

.basic-N31 .textset {
    text-align: center
}

.basic-N31 .textset .textset-desc {
    color: var(--text-color3)
}

@media (max-width: 576px) {
    .basic-N31 .textset .textset-desc br {
        display: none
    }
}
/* basic-N31 [xcmC8S51Ah] */
.basic-N31[id='xcmC8S51Ah'] {
    padding-top: 5rem;
    padding-bottom: 1rem
}

.basic-N31[id='xcmC8S51Ah'] .textset .textset-desc {
    margin-top: 4rem
}

@media (max-width: 992px) {
    .basic-N31[id='xcmC8S51Ah'] {
        padding-top: 3rem;
        padding-bottom: 1rem
    }
}
/* basic-N31 [fJMca9cNx1] */
.basic-N31[id='fJMca9cNx1'] {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.basic-N31[id='fJMca9cNx1'] .textset .textset-desc {
    margin-top: 2rem
}

@media (max-width: 992px) {
    .basic-N31[id='fJMca9cNx1'] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* basic-N31 [SGmcA9GzKy] */
.basic-N31[id='SGmcA9GzKy'] {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.basic-N31[id='SGmcA9GzKy'] .textset .textset-desc {
    margin-top: 2rem
}

@media (max-width: 992px) {
    .basic-N31[id='SGmcA9GzKy'] {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* basic-N31 [UmmcAa60uM] */
.basic-N31[id='UmmcAa60uM'] {
    padding-top: 0rem;
    padding-bottom: 0rem
}

.basic-N31[id='UmmcAa60uM'] .textset .textset-desc {
    margin-top: 2rem
}

@media (max-width: 992px) {
    .basic-N31[id='UmmcAa60uM'] {
        padding-top: 0rem;
        padding-bottom: 0rem
    }
}
/* basic-N31 [rQmCADYe0O] */
.basic-N31[id='rQmCADYe0O'] {
    padding-top: 1rem;
    padding-bottom: 3rem
}

.basic-N31[id='rQmCADYe0O'] .textset .textset-desc {
    margin-top: 2rem
}

@media (max-width: 992px) {
    .basic-N31[id='rQmCADYe0O'] {
        padding-top: 0rem;
        padding-bottom: 1rem
    }
}
/* basic-N6_s */
.basic-N6_s {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
    background: #E8E8E8FF
}

.basic-N6_s .textset {
    text-align: center;
    margin-bottom: 0
}

.basic-N6_s .textset-desc {
    color: var(--text-color3)
}

@media (max-width: 992px) {
    .basic-N6_s {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .basic-N6_s .textset .textset-tit+.textset-desc {
        margin-top: 2rem
    }

    .basic-N6_s .textset-desc {
        word-break: keep-all
    }

    .basic-N6_s .textset-desc br {
        display: none
    }
}
/* personal-UfmCN2CrGf */
.personal-UfmCN2CrGf {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 2rem
}

.personal-UfmCN2CrGf .textset {
    margin-bottom: 0;
    text-align: center
}

.personal-UfmCN2CrGf .textset .textset-tit {
    font-weight: 400
}

@media (max-width: 992px) {
    .personal-UfmCN2CrGf {
        padding-top: 1rem;
        padding-bottom: 2rem
    }
}
/* wellness-N7 */
.wellness-N7 {
    overflow: hidden;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #f7f2ef
}

.wellness-N7 .contents-inner {
    display: flex;
    gap: 14rem;
    position: relative;
    width: 100%
}

.wellness-N7 .desc-area {
    flex: 1;
    position: relative
}

.wellness-N7 .desc-area h2 {
    position: relative;
    padding-bottom: 4rem;
    font-weight: var(--fw-regular)
}

.wellness-N7 .desc-area h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 0.4rem;
    background: #111
}

.wellness-N7 .desc-area strong {
    display: block;
    margin: 2.8rem 0 2rem
}

.wellness-N7 .desc-area p {
    margin-bottom: 4rem;
    color: #767676;
    font-weight: var(--fw-regular)
}

.wellness-N7 .video-area {
    flex: 1;
    position: relative;
    min-height: 56rem
}

.wellness-N7 .videoset {
    position: absolute;
    width: calc(50vw - 2rem);
    height: 100%
}

.wellness-N7 .videoset-button {
    height: 100%;
    text-align: center
}

.wellness-N7 .videoset-button .videoset-icon {
    cursor: auto
}

.wellness-N7 .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 1200px) {
    .wellness-N7 .videoset {
        width: calc(100% + 4rem)
    }
}

@media (max-width: 992px) {
    .wellness-N7 {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .wellness-N7 .contents-inner {
        flex-direction: column;
        gap: 4rem
    }

    .wellness-N7 .video-area {
        flex: none;
        width: 100%;
        height: 19rem;
        min-height: 0
    }

    .wellness-N7 .videoset {
        position: static;
        width: 100%
    }

    .wellness-N7 .modalset-open-btn {
        width: 5rem;
        height: 5rem
    }

    .wellness-N7 .desc-area {
        flex: none
    }

    .wellness-N7 .desc-area h2 {
        padding-bottom: 2.5rem
    }

    .wellness-N7 .desc-area h2::after {
        width: 8rem
    }

    .wellness-N7 .desc-area strong {
        margin: 1.8rem 0 1.3rem
    }

    .wellness-N7 .desc-area p {
        margin-bottom: 2.4rem
    }
}
/* party */
.party {
    overflow: hidden;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem
}

.party .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80rem
}

.party .videoset {
    width: 100%;
    height: 100%
}

.party .videoset-button {
    height: 100%;
    text-align: center
}

.party .videoset-button .videoset-icon {
    cursor: auto
}

.party .videoset .videoset-tit {
    margin-bottom: 4.2rem
}

.party .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 992px) {
    .party {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .party .contents-container {
        height: 50rem
    }

    .party .videoset,
    .party .videoset-button {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem
    }

    .party .videoset .videoset-tit {
        margin-bottom: 3.3rem
    }
}
/* basic-N29 */
.basic-N29 {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden
}

.basic-N29 .textset .textset-subtit {
    margin-top: 3rem
}

.basic-N29 .textset .textset-desc {
    margin-top: 1rem;
    color: var(--text-color3)
}

@media (max-width: 992px) {
    .basic-N29 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .basic-N29 .textset .textset-subtit {
        margin-top: 2rem
    }
}
/* temhabank-N5 */
.temhabank-N5 {
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
    padding-top: 5rem
}

.temhabank-N5 .contents-inner {
    width: 100%
}

.temhabank-N5 h2 {
    margin-bottom: 3rem
}

.temhabank-N5 .link-area {
    display: flex;
    border: 1px solid var(--border-color)
}

.temhabank-N5 .link {
    flex: 1
}

.temhabank-N5 .link a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding: 3.5rem
}

.temhabank-N5 .link:not(:first-child) a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0.1rem;
    height: calc(100% - 7rem);
    background: var(--border-color)
}

.temhabank-N5 .thumb {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.5rem;
    height: 6.5rem;
    background: #e9e9e9;
    border-radius: 50%;
    transition: background .3s
}

.temhabank-N5 .link a:hover .thumb {
    background: var(--primary)
}

.temhabank-N5 .thumb img {
    width: 4.1rem;
    height: 4.1rem;
    object-fit: contain;
    transition: filter .3s
}

.temhabank-N5 .link a:hover img {
    filter: invert(1) brightness(2)
}

.temhabank-N5 .desc strong {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: color .3s
}

.temhabank-N5 .link a:hover strong {
    color: var(--primary)
}

.temhabank-N5 .desc span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: var(--text-color3);
    font-weight: var(--fw-bold)
}

.temhabank-N5 .link i {
    display: none;
    margin-left: auto
}

@media (max-width: 992px) {
    .temhabank-N5 {
        padding-bottom: 3rem;
        padding-top: 3rem
    }

    .temhabank-N5 h2 {
        text-align: center
    }

    .temhabank-N5 .link-area {
        flex-direction: column
    }

    .temhabank-N5 .link a {
        justify-content: flex-start;
        padding: 1.5rem
    }

    .temhabank-N5 .link+.link {
        border-top: 1px solid var(--border-color)
    }

    .temhabank-N5 .link:not(:first-child) a::before {
        content: none
    }

    .temhabank-N5 .thumb {
        width: 4.5rem;
        height: 4.5rem
    }

    .temhabank-N5 .thumb img {
        width: 3.1rem;
        height: 3.1rem
    }

    .temhabank-N5 .link i {
        display: block
    }
}
/* personal-IzmclPuBkQ */
.personal-IzmclPuBkQ {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden
}

.personal-IzmclPuBkQ .textset {
    margin-bottom: 4rem
}

.personal-IzmclPuBkQ .contents-map {
    width: 100%;
    height: 40rem;
    border-radius: 2rem;
    overflow: hidden
}

.personal-IzmclPuBkQ .contents-map iframe {
    width: 100%;
    height: 100%
}

.personal-IzmclPuBkQ .contents-list {
    display: flex;
    margin-top: 4rem
}

.personal-IzmclPuBkQ .contents-item:first-child {
    width: 50%
}

.personal-IzmclPuBkQ .contents-item {
    width: 25%
}

.personal-IzmclPuBkQ .contents-ico {
    display: flex;
    align-items: center
}

.personal-IzmclPuBkQ .contents-figure {
    display: flex;
    align-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.4rem;
    margin-bottom: 0
}

.personal-IzmclPuBkQ .contents-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.personal-IzmclPuBkQ .contents-desc {
    margin-top: 1.2rem;
    color: var(--text-color3)
}

@media (max-width: 992px) {
    .personal-IzmclPuBkQ .contents-inner {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .personal-IzmclPuBkQ .contents-list {
        flex-direction: column;
        gap: 4rem
    }

    .personal-IzmclPuBkQ .contents-item {
        width: 100% !important
    }

    .personal-IzmclPuBkQ {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* perform */
.perform {
    overflow: hidden;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 2rem
}

.perform .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80rem
}

.perform .videoset {
    width: 100%;
    height: 100%
}

.perform .videoset-button {
    height: 100%;
    text-align: center
}

.perform .videoset-button .videoset-icon {
    cursor: auto
}

.perform .videoset .videoset-tit {
    margin-bottom: 4.2rem
}

.perform .modalset-open-btn {
    cursor: pointer
}

@media (max-width: 992px) {
    .perform {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .perform .contents-container {
        height: 50rem
    }

    .perform .videoset,
    .perform .videoset-button {
        width: calc(100% + 3.2rem);
        margin-left: -1.6rem
    }

    .perform .videoset .videoset-tit {
        margin-bottom: 3.3rem
    }
}
/* basic-N53 */
.basic-N53 {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 12rem;
    overflow: hidden
}

.basic-N53 .accordset {
    border-top-color: var(--line-color1)
}

.basic-N53 .accordset .accordset-a {
    color: var(--text-color1)
}

.basic-N53 .accordset .accordset-content {
    padding: 2rem 2rem 2rem 2.4rem;
    background-color: #fafafa;
    color: var(--text-color3)
}

.basic-N53 .pagiset {
    margin-top: 6rem
}

.basic-N53 .pagiset .pagiset-link {
    border-radius: 0.6rem
}

@media (max-width: 992px) {
    .basic-N53 {
        padding-top: 3rem;
        padding-bottom: 11rem
    }

    .basic-N53 .pagiset .pagiset-link {
        width: 3.2rem;
        height: 3.2rem
    }
}
/* personal-kiMCIqVw8s */
.personal-kiMCIqVw8s {
    overflow: hidden;
    position: relative;
    background: url(../images/class.jpg) no-repeat center/cover
}

.personal-kiMCIqVw8s .contents-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48rem
}

.personal-kiMCIqVw8s h2 {
    color: var(--white);
    font-weight: var(--fw-medium)
}

@media (max-width: 992px) {
    .personal-kiMCIqVw8s .contents-container {
        height: 40rem
    }
}
/* personal-oVMCinu4jj */
.personal-oVMCinu4jj {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden
}

.personal-oVMCinu4jj .textset {
    margin-bottom: 4rem
}

.personal-oVMCinu4jj .contents-map {
    width: 100%;
    height: 40rem;
    border-radius: 2rem;
    overflow: hidden
}

.personal-oVMCinu4jj .contents-map iframe {
    width: 100%;
    height: 100%
}

.personal-oVMCinu4jj .contents-list {
    display: flex;
    margin-top: 4rem
}

.personal-oVMCinu4jj .contents-item:first-child {
    width: 50%
}

.personal-oVMCinu4jj .contents-item {
    width: 25%
}

.personal-oVMCinu4jj .contents-ico {
    display: flex;
    align-items: center
}

.personal-oVMCinu4jj .contents-figure {
    display: flex;
    align-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.4rem;
    margin-bottom: 0
}

.personal-oVMCinu4jj .contents-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.personal-oVMCinu4jj .contents-desc {
    margin-top: 1.2rem;
    color: var(--text-color3)
}

@media (max-width: 992px) {
    .personal-oVMCinu4jj .contents-inner {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .personal-oVMCinu4jj .contents-list {
        flex-direction: column;
        gap: 4rem
    }

    .personal-oVMCinu4jj .contents-item {
        width: 100% !important
    }

    .personal-oVMCinu4jj {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
}
/* butti-N20 */
.butti-N20 {
    overflow: hidden;
    position: relative;
    padding-top: 0rem;
    padding-bottom: 2rem
}

.butti-N20 .contents-container {
    display: flex;
    flex-direction: column
}

.butti-N20 .contents-inner {
    width: 100%
}

.butti-N20 .cardset {
    width: calc(50% + 24rem)
}

.butti-N20 .cardset+.cardset {
    margin: 10rem 0 0 auto
}

.butti-N20 .cardset-figure {
    height: 56rem
}

.butti-N20 .cardset-body {
    margin-top: 4rem;
    padding: 0
}

.butti-N20 .cardset-tit+.cardset-desc {
    overflow: visible;
    -webkit-line-clamp: inherit;
    margin: 2.2rem 0 0 0;
    color: #777777
}

@media (max-width: 992px) {
    .butti-N20 {
        padding-top: 0rem;
        padding-bottom: 5rem
    }

    .butti-N20 .cardset {
        width: 100%
    }

    .butti-N20 .cardset-figure {
        height: 29rem
    }

    .butti-N20 .cardset-body {
        margin-top: 2rem
    }

    .butti-N20 .cardset-body br {
        display: none
    }

    .butti-N20 .cardset-tit+.cardset-desc {
        margin-top: 1.5rem
    }
}