/*****  HEADER *****/

header.nodam_hd {
    background: #000;
    position: relative;
    z-index: 100;
}

header.nodam_hd .hd_wrap {
    height: 211px;
    width: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header.nodam_hd .hd_wrap .hd_year {
    display: flex;
    gap: 7px;
}

header.nodam_hd .hd_wrap .hd_year li {
    width: 95px;
    height: 40px;
}

header.nodam_hd .hd_wrap .hd_year li a {
    font-size: 1.6rem;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
    font-size: 2.4rem;
    font-weight: 700;
}

header.nodam_hd .hd_wrap .hd_icon {
    display: flex;
    gap: 10px;
}

header.nodam_hd .hd_wrap .hd_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

header.nodam_hd .hd_wrap .hd_logo a {
    position: relative;
    display: block;
    width: 260px;
    height: 114px;
}

header.nodam_hd .hd_wrap .hd_logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 114px;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .7s cubic-bezier(.7, 0, .3, 1);
    backface-visibility: hidden;
    will-change: transform;
}

header.nodam_hd .hd_wrap .hd_logo img.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

header.nodam_hd .hd_wrap .hd_logo img.prev {
    opacity: 1;
    transform: translateX(-100%);
    z-index: 1;
}

header.nodam_hd nav.hd_menu {
    height: 52px;
    display: flex;
    align-items: center;
    background: #000;
    border-top: 1px solid #454545;
}

header.nodam_hd nav.hd_menu .hd_ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header.nodam_hd nav.hd_menu .hd_ul>li {
    position: relative;
    width: 400px;
    text-align: center;
    position: relative;
}

header.nodam_hd nav.hd_menu .hd_ul>li:after {
    content: "";
    position: absolute;
    height: 16px;
    width: 1px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #999;
}

header.nodam_hd nav.hd_menu .hd_ul>li:last-child:after {
    display: none;
}

header.nodam_hd nav.hd_menu .hd_ul>li>a {
    font-size: 2.4rem;
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    white-space: nowrap;
}

header.nodam_hd nav.hd_menu .hd_ul>li.active>a {
    font-weight: 900;
}

header.nodam_hd nav.hd_menu .hd_ul li>ul {
    display: none;
    width: 100%;
    max-width: 400px;
    position: absolute;
    z-index: 999;
    top: 44px;
    background: #000;
    border-top: 0
}

header.nodam_hd nav.hd_menu .hd_ul li>ul li {
    width: 100%;
    padding: 15px 0;
}


header.nodam_hd nav.hd_menu .hd_ul li>ul li a {
    font-size: 2rem;
    padding: 15px 0;
    color: #fff;
}

header.nodam_hd nav.hd_menu .hd_ul li>ul li a:hover {
    color: var(--now-cr);
}

header.nodam_hd nav.hd_menu .hd_ul li:hover ul {
    display: block;
}

header.nodam_hd nav.hd_menu .hd_ul li ul:hover {
    display: block;
}

/***** FOOTER *****/

footer.nodam_ft {
    width: 100%;
    height: 160px;
    background: #000;
    position: relative;
    margin-top: auto;
}

footer.nodam_ft .ft_wrap {
    height: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}

footer.nodam_ft .ft_txt {
    color: #fff;
    font-size: 1.4rem;
    line-height: 20px;
    font-weight: 300;
    text-align: right;
    opacity: 30%;
}

@media screen and (max-width: 1500px) {
    header.nodam_hd .hd_wrap {
        padding: 0 30px;
    }

    header.nodam_hd .hd_wrap .hd_year li {
        width: 90px;
    }

    header.nodam_hd .hd_wrap .hd_logo a {
        position: relative;
        display: block;
        width: 240px;
        height: 120px;
    }

    header.nodam_hd .hd_wrap .hd_logo a img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 800px) {
    header.nodam_hd .hd_wrap {
        height: 25vw;
        padding: 0 6.25vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    header.nodam_hd .hd_wrap .hd_logo a {
        width: 28vw;
        height: 17vw;
    }

    header.nodam_hd .hd_wrap .hd_icon {
        height: 6vw;
        gap: 1.25vw;
        width: 100%;
    }


    header.nodam_hd .hd_wrap .hd_icon li {
        height: 6vw;
    }

    header.nodam_hd .hd_wrap .hd_icon li:last-child {
        margin-left: auto;
    }

    header.nodam_hd .hd_wrap .hd_icon li a {
        height: 100%;
        max-width: 6vw;
        display: inline-block;
    }

    header.nodam_hd .hd_wrap .hd_icon li:last-child a {
        max-width: 22vw;
    }

    header.nodam_hd .hd_wrap .hd_icon li a img {
        display: inline-block;
        width: 100%;
        height: 100%;
    }

    header.nodam_hd .hd_wrap .hd_logo img {
        height: 18.75vw;
    }

    header.nodam_hd nav.hd_menu {
        height: 14vw;
    }

    header.nodam_hd nav.hd_menu .nav_wrap,
    header.nodam_hd nav.hd_menu .hd_ul {
        height: 100%;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li {
        width: 33.3333%;
        height: 100%;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul {
        max-width: initial;
        top: 13.5vw;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul li {
        padding: 0;
        height: 12vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header.nodam_hd nav.hd_menu .hd_ul li>ul li a {
        font-size: 3.75vw;
        padding: 0;
        color: #fff;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li>a {
        font-size: 3.75vw;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header.nodam_hd nav.hd_menu .hd_ul>li:after {
        height: 5.75vw;
    }

    footer.nodam_ft {
        height: auto;
        position: absolute;
        z-index: 20;
    }

    footer.nodam_ft .ft_wrap {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .ft_logo img {
        height: 6.38vw;
        margin-top: 5.5vw;
    }

    footer.nodam_ft .ft_txt {
        font-size: 3vw;
        text-align: center;
        line-height: 4vw;
        margin: 3.75vw 0;
    }
}

/*****  header / footer END *****/


/***** section club *****/
#clubSec01 {
    background: url(../images/club/sky_bg.jpg) repeat 50% 50% / cover;
}

#clubSec01 .sec_01_inner {
    position: relative;
    height: 1212px;
    padding: 0;
    filter: drop-shadow(inset, 0 15px 15px rgba(0, 0, 0, 0.5));
}

#clubSec01 .sec_01_inner .cloud_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/club/cloud.png) repeat 50% 50% / contain;
    animation: cloudLoop 110s linear infinite;
    z-index: 1;
}

@keyframes cloudLoop {
    0% {
        background-position: -3791px 0;
    }

    100% {
        background-position: 0 0;
    }
}

#clubSec01 .sec_01_inner .kv_cont {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1920px;
    height: 1431px;
    background-image: url(../images/club/club_kv2.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 2;
/*    clip-path: polygon(0px 0px,
        100% 0px,
        100% calc(100% - 324px),
        95% calc(100% - 282px),
        90% calc(100% - 245px),
        85% calc(100% - 212px),
        80% calc(100% - 183px),
        75% calc(100% - 158px),
        70% calc(100% - 137px),
        65% calc(100% - 120px),
        60% calc(100% - 107px),
        55% calc(100% - 99px),
        50% calc(100% - 97px),
        45% calc(100% - 99px),
        40% calc(100% - 107px),
        35% calc(100% - 120px),
        30% calc(100% - 137px),
        25% calc(100% - 158px),
        20% calc(100% - 183px),
        15% calc(100% - 212px),
        10% calc(100% - 245px),
        5% calc(100% - 282px),
        0px calc(100% - 324px));*/
}

#clubSec01 .sec_01_inner .neonsign_bg {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(calc(-50% - 12px));
    width: 539px;
    height: 152px;
    background-image: url(../images/club/neonsign.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    overflow: hidden;
    z-index: 3;
}


#clubSec01 .sec_01_inner .neonsign_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 65%);
    background-repeat: no-repeat;
    background-size: 250% 250%;
    background-position: -80% -80%;
    -webkit-mask-image: url(../images/club/neonsign.svg);
    mask-image: url(../images/club/neonsign.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: contain;
    mask-size: contain;
    animation: neonShine 3s linear infinite;
    pointer-events: none;
}

#clubSec01 .sec_01_inner .neonsign_bg2 {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(calc(-50% - 580px));
    width: 539px;
    height: 152px;
    background-image: url(../images/club/neonsign.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    overflow: hidden;
    z-index: 3;
}

@keyframes neonShine {
    0% {
        background-position: 180% 180%;
    }

    100% {
        background-position: -80% -80%;
    }
}

#clubSec01 .sec_01_inner .kv_cont .newbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 381px), calc(-50% + 30px));
    width: 137px;
    height: 92px;
    background-image: url(../images/club/new_bubble.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    animation: newBlink 1.4s steps(1) infinite;
}

@keyframes newBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#clubSec01 .sec_01_inner .club_btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    padding: 29px 50px;
    color: #fff;
    font-size: 4.8rem;
    font-family: var(--font-club-point);
    font-weight: 600;
    z-index: 5;
    background: url(../images/club/btn_bg.png) no-repeat 50% 50% / cover;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.tree_bg1 {
    position: absolute;
    z-index: 1;
    top: 48px;
    left: 218px;
    width: 281px;
    height: 818px;
    background-image: url(../images/club/tree1.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    transform-origin: 50% 100%;
    animation: treeTremble 3s ease-in-out infinite;
}

.tree_bg2 {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 236px;
    width: 281px;
    height: 818px;
    background-image: url(../images/club/tree2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    transform-origin: 50% 100%;
    animation: treeTremble 2.5s ease-in-out infinite;
}

.tree_bg3 {
    position: absolute;
    z-index: 1;
    top: 326px;
    right: 106px;
    width: 164px;
    height: 519px;
    background-image: url(../images/club/tree3.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    transform-origin: 50% 100%;
    animation: treeTremble 1.4s ease-in-out infinite;
}

.tree_bg4 {
    position: absolute;
    z-index: 2;
    top: 503px;
    left: 0px;
    width: 303px;
    height: 360px;
    background-image: url(../images/club/tree4.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    transform-origin: 50% 100%;
    animation: treeTremble 2s ease-in-out infinite;
}


@keyframes treeTremble {

    0%,
    100% {
        transform: rotate(1deg);
    }

    50% {
        transform: rotate(0.8deg);
    }
}

/***** section club END *****/