@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700;800&display=swap");


img,
picture,
svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

:root {
    --card-bg-outer: #b38f6d;
    --card-bg-upper: #ffffff;
    --card-bg-lower: #7c4e2c;
    --card-text-dark: #29180c;
    --card-text-light: #ffffff;
    --card-frame-gold: #d3b169;
    --btn-bg: #4a2914;
    --text-dark: #29180c;
}

body {
    background-color: #26170d;
    font-family: 'Noto Sans TC', sans-serif;
    overflow-x: hidden;
}

.image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
}
.bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-color: #00000070;
    z-index: 99;
    pointer-events: none;
}
.main-canvas {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    height: auto;
    background-image: url("../img/bg.jpg");
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center;
    container-type: inline-size;

    overflow: hidden;

}

.main-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;

    animation: canvasFilterFlash 3s ease-in-out forwards;
}

.main-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    pointer-events: none;
    z-index: 9999;

    animation: canvasWhiteOverlay 2s ease-in-out forwards;
}

@keyframes canvasFilterFlash {
    0%,
    20% {
        backdrop-filter: brightness(1) contrast(1);
        -webkit-backdrop-filter: brightness(1) contrast(1);
    }
    30% {
        backdrop-filter: brightness(1.4) contrast(1.15);
        -webkit-backdrop-filter: brightness(1.4) contrast(1.15);
    }
    100% {
        backdrop-filter: brightness(1) contrast(1);
        -webkit-backdrop-filter: brightness(1) contrast(1);
        visibility: hidden;
    }
}

@keyframes canvasWhiteOverlay {
    0%,
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.right_btn01 {
    position: fixed;
    width: 8.5vw;
    height: auto;
    right: 0;
    top: 11.5vw;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    z-index: 8;
}
.right_btn02 {
    position: fixed;
    width: 8.5vw;
    height: auto;
    right: 0;
    top: 19vw;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    z-index: 8;
}
.right_btn01:hover,
.right_btn02:hover {
    right: -0.4vw;
}

#section-kv {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;

    transform-origin: center center;

    animation: kvZoomRotate 2.5s ease-out 0.5s both;
}

@keyframes kvZoomRotate {
    0% {

        transform: scale(1.4) rotate(6deg);
    }
    100% {

        transform: scale(1) rotate(0deg);
    }
}

.kv {
    position: relative;
    width: 100cqw;
    height: auto;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
#box-logo {
    position: absolute;
    width: 8.5cqw;
    height: 8cqw;
    left: 9cqw;
    top: 2cqw;
    background-color: #ff000030;
    cursor: pointer;
    z-index: 2;
}
#rorblogo {
    position: absolute;
    width: 10.5cqw;
    height: auto;
    left: 1cqw;
    top: 1cqw;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease-in-out;
}
#rorblogo:hover {
    transform: scale(0.95);
}
.slogan {
    display: flex;
    position: absolute;
    width: 45.617cqw;
    height: auto;
    bottom: 27%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    justify-content: space-between;
    pointer-events: none;

}

@keyframes sloganup {
    0% {

        transform: scale(2.0) rotate(5deg);
    }
    100% {

        transform: scale(1) rotate(0deg);
    }
}

#section-1 {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    height: auto;
    align-items: center;
}
.title-s1,
.title-s2,
.title-s3 {
    position: relative;
    width: 100%;
    margin-bottom: 2%;
}
.npc01-s1 {
    position: absolute;
    width: 26.25cqw;
    height: auto;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.npc02-s1 {
    position: absolute;
    width: 27.717cqw;
    height: auto;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
.text-s1 {
    position: relative;
    width: auto;
    letter-spacing: 0.052cqw;
    font-size: 1.333cqw;
    font-weight: 500;
    color: #5b0000;
}
#btn-s1 {
    position: relative;
    width: auto;
    padding: 0.75cqw 6cqw;
    font-size: 2.083cqw;
    font-weight: 600;
    letter-spacing: 0.312cqw;
    color: #fff;
    background-color: var(--btn-bg);
    border-radius: 50cqw;
    cursor: pointer;
    margin: 1.5% 0 9%;
    transition: transform 0.2s ease-in-out;
}

#box-img {
    position: relative;
    font-size: 0.8cqw;
    font-weight: 400;
    letter-spacing: 0.1cqw;
    line-height: 1.75;
    color: #fff;
    width: 36cqw;
    height: auto;
    z-index: 2;
}
.event-info-box {
    position: relative;
    width: 100%;
    max-width: 42.708cqw;
    margin: 0 auto;
    background-color: #865030;
    background-image: url("../img/wood.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1.458cqw;
    padding: 4% 2% 3%;
    box-sizing: border-box;
    margin-top: 5%;
}
.card-slogan {
    font-size: 1.833cqw;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5%;
    letter-spacing: 0.104cqw;
    line-height: 0;
    text-box-trim: trim-end;
    text-align: right;
}
.info-list {
    list-style: none;
    padding: 0 1cqw;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.145cqw;
}
.event-note {
    width: 7.402cqw;
    height: auto;
    position: absolute;
    top: -9%;
    left: -4%;
}
.info-item {
    display: flex;
    align-items: stretch;
    background-color: transparent;
    border-radius: 50cqw;
    isolation: isolate;
    transform: translateZ(0);
}
.info-label {
    background-color: #3b2111;
    color: #f3dfd3;
    font-weight: 500;
    font-size: 1cqw;
    letter-spacing: 0.104cqw;
    width: 23%;
    min-height: 2.5cqw;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50cqw 0 0 50cqw;
    margin-right: -0.052cqw;
    position: relative;
    z-index: 1;
}
.info-content {
    flex: 1;
    background-color: #ffffff;
    color: #6c4932;
    font-weight: 500;
    letter-spacing: 0.026cqw;
    font-size: 0.916cqw;
    border-radius: 0 50cqw 50cqw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.833cqw;
    text-align: center;
    word-break: break-word;
}
#section-2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;

}
.eventbox-s2 {
    position: relative;
    display: grid;
    width: auto;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5cqw;
    margin-bottom: 12%;
}
.event-s2 {
    position: relative;
    width: 27.087cqw;
}
.event-s2-cos {
    position: relative;
    width: 27.087cqw;
    transition: transform 0.1s ease-in-out;
}
.event-s2-cos:hover {
    transform: scale(0.98);
}
#coser,
#coser:focus,
#coser:focus-visible,
#coser:target {
    outline: none !important;
    box-shadow: none !important;
}
a,
a *,
a:active,
a:focus,
a:focus-visible {
    outline: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
* {
    -webkit-focus-ring-color: transparent !important;
}
.carousel-wrapper {
    position: relative;
    width: 52.083cqw;
    margin: 2.083cqw auto;
    padding: 2.083cqw 1.041cqw;
    background: url("img/bg3.jpg") no-repeat center center;
    background-size: cover;
    box-sizing: border-box;
    text-align: center;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 1.041cqw;
    margin-bottom: 1.041cqw;
}
.btn {
    padding: 0.625cqw 1.562cqw;
    border-radius: 1.302cqw;
    cursor: pointer;
    font-weight: bold;
    border: 0.104cqw solid #2c65d4;
    background: #fff;
    color: #2c65d4;
    transition: all 0.3s;
}
.btn.active {
    background: #2c65d4;
    color: #fff;
}
.carousel {
    position: relative;
    width: 41.666cqw;
    height: 23.437cqw;
    margin: 0 auto 1.562cqw;
    overflow: hidden;
    border-radius: 0.312cqw;
}
.slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.slides img:first-child {
    display: block;
}
.btn-c {
    display: inline-block;
    padding: 0.729cqw 2.083cqw;
    border-radius: 1.302cqw;
    background: orange;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-c:hover {
    background: darkorange;
}
.npc04 {
    position: absolute;
    width: 10.027cqw;
    height: auto;
    right: 5%;
    top: 50%;
    align-self: flex-end;
    pointer-events: none;
    z-index: 5;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
.npc05 {
    position: absolute;
    width: 19.3705cqw;
    height: auto;
    left: 0;
    top: 19%;
    align-self: flex-end;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
#section-3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}
.card-img-box {
    display: flex;
    gap: 5.833cqw;
    margin: 2.5cqw 0;
}
.card-img-l,
.card-img-r {
    display: flex;
    width: 15.4338cqw;
    height: auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
    font-size: 1.125cqw;
    font-weight: 500;
    gap: 2%;
    letter-spacing: 0.104cqw;
}
.card-img-r {
    color: #f8f8f8;
}
.card-img-l {
    color: #f5eba3;
}
.card-title {
    position: relative;
    width: auto;
    padding: 0.2% 4%;
    font-size: 1.25cqw;
    line-height: 1.5;
    letter-spacing: 0.052cqw;
    color: #fff;
    background-color: #78502f;
    border-radius: 50cqw;
}
.card-text {
    text-align: center;
    line-height: 1;
    font-size: 0.916cqw;
    color: #3f0d0d;
    margin: 0.833cqw 0;
    font-weight: 500;
    letter-spacing: 0.052cqw;
}

.card-notice {
    font-size: 0.833cqw;
    color: #fff;
    text-align: center;
    margin: 2% 0 5%;
    letter-spacing: 0.078cqw;
    line-height: 1;
}
.card-box {
    position: relative;
    display: flex;
    width: auto;
    height: auto;
    margin-top: 3%;
    flex-direction: row;
    gap: 1.25cqw;
}
.card-meta {
    display: flex;
    position: relative;
    width: 11cqw;
    height: auto;
    background-color: azure;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.card-meta-text {
    background-color: #312416;
}
.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25cqw;
    background-color: var(--card-bg-outer);
    min-height: 100vh;
    box-sizing: border-box;
}
.character-card,
.character-cardS {
    position: relative;
    width: 100%;
    min-width: 12.5cqw;
    max-width: 39.166cqw;
    border-radius: 0.729cqw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.character-cardS::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.208cqw solid rgb(255 230 162);
    border-radius: 0.729cqw;
    pointer-events: none;
    z-index: 2;
}
.card-header {
    padding: 2.5cqw 0 1.666cqw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--card-bg-upper);
}
.avatar-frame {
    width: 6.09cqw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.character-card:hover .avatar-img {
    transform: scale(1.08);
}
.card-name01,
.card-name02 {
    margin-top: 0.833cqw;
    font-size: 0.833cqw;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
}
.card-name01 {
    color: #61442f;
}
.card-name02 {
    color: #f5bc40;
}
.card-body {
    background-color: var(--card-bg-lower);
    height: stretch;
    padding: 1.666cqw 0.833cqw;
    display: flex;
    flex-direction: column;
    gap: 0.833cqw;
    text-align: center;
    color: var(--card-text-light);
}
.attribute-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.attr-label {
    font-size: 1cqw;
    color: #fff6ad;
    font-weight: 600;
    letter-spacing: 0.052cqw;
}
.attr-value {
    font-size: 0.75cqw;
    font-weight: 100;
    letter-spacing: 0.026cqw;
    line-height: 1.75;
}
#section-4 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: 12cqw;
}
.notice-box {
    display: flex;
    gap: 2cqw;
}
#Check-in,
#Notice {
    position: relative;
    width: 15cqw;
    padding: 1cqw;
    text-align: center;
    font-size: 1.25cqw;
    font-weight: 600;
    color: #fff;
    background-color: var(--btn-bg);
    border-radius: 50cqw;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#Check-in .amp {
    font-size: 0.8em;
    vertical-align: 0.05em;
}
.npc03 {
    position: absolute;
    width: 40.263cqw;
    height: auto;
    bottom: 0;
    align-self: flex-end;
    pointer-events: none;
}
#section-footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
}
.notice {
    position: absolute;
    width: 39.375cqw;
    height: auto;
    top: -4cqw;
    background-color: #ff000030;
    z-index: 2;
}
#gotop {
    position: absolute;
    width: 2.187cqw;
    height: auto;
    background: #121110c9;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    padding: 0.625cqw;
    right: 1.666cqw;
    bottom: 1.666cqw;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border-radius: 0.625cqw;
}

#section-5 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}
#footbox {
    width: 100%;
}
footer {
    background-color: #312416;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #63ade2d6;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}
.popup-box {
    position: relative;
    width: 139vh;
    max-width: 2560px;
    height: auto;
}
.popup-close {
    position: absolute;
    width: 4.375cqw;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.4s ease;
}

.door-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999;
    pointer-events: none;
}

.door {
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100vh;
    pointer-events: auto;
    background-image: url("img/door.jpg");
    background-size: cover;
    background-position: center;

}

.door-left {
    left: 0;
    background-color: #683a23;
    background-image: url("../img/door.jpg");
    background-size: cover;
    background-position: right;

    transform-origin: left center;

    animation: openLeft 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
}

.door-right {
    right: 0;

    transform-origin: right center;
    animation: openRight 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;

    overflow: hidden;
}

.door-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #6a5e55;
    background-image: url("../img/door.jpg");
    background-size: cover;
    background-position: right;

    transform: scaleX(-1);
}

@keyframes openLeft {
    0% {
        transform: translateX(0);
        filter: brightness(1);
    }

    100% {
        transform: translateX(-100%);
        visibility: hidden;
        filter: brightness(0.3);
    }
}

@keyframes openRight {
    0% {
        transform: translateX(0);
        filter: brightness(1);
    }
    100% {
        transform: translateX(100%);
        visibility: hidden;
        filter: brightness(0.3);
    }
}

html.skip-intro .door-intro {
    display: none !important;
}

html.skip-intro .main-canvas::after {
    display: none !important;
}

html.skip-intro #section-kv,
html.skip-intro .main-canvas {
    animation: none !important;
}

@media screen and (max-width: 768px) {


body, html {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}


.door-intro {
    display: none;
}



.main-canvas::before {
    animation: canvasFilterFlash 1.5s ease-in-out forwards;
}

.main-canvas::after {
    animation: none;
    background-color: #ffffff00;

}

@keyframes canvasFilterFlash {

    0% {
        backdrop-filter: brightness(1.25) contrast(1.15);
        -webkit-backdrop-filter: brightness(1.25) contrast(1.15);
    }
    100% {
        backdrop-filter: brightness(1) contrast(1);
        -webkit-backdrop-filter: brightness(1) contrast(1);
        visibility: hidden;
    }
}



    .mobile-break {
        display: block;
    }

    .hide-on-mobile {
        display: none;
    }

    .main-canvas {
        max-width: 100vw;
        background-size: cover;
        overflow-x: hidden;
        background-image: url("../img/bg-m.jpg");
        background-size: contain;
        background-repeat: repeat-y;
        background-position: top center;
        container-type: inline-size;
    }

    #section-kv {
        animation: kvZoomRotateM 2s ease-out 0s both;

    }

    @keyframes kvZoomRotateM {
        0% {
            transform: scale(1.05) rotate(0deg);
        }
        100% {
            transform: scale(1) rotate(0deg);
        }
    }

    #rorblogo {
        width: 30vw;
        top: 4vw;
        left: 4vw;
    }
    .slogan {
        width: 100vw;
        bottom: 16%;
        left: 0;
        justify-content: center;
    }

    .title-s1,
    .title-s2,
    .title-s3 {
        margin-bottom: 5vw;
    }
    .text-s1 {
        font-size: 5vw;
        width: 90%;
        font-weight: 600;
        text-align: center;
        line-height: 1.6;
        letter-spacing: 0.2vw;
        margin-top: 5vw;
    }
    .event-info-box {
        max-width: 90vw;
        margin-top: 15vw;
        padding: 12% 5%;
        border-radius: 4vw;
    }
    .event-note {
        width: 27vw;
        top: -7%;
        left: -3%;
    }
    .card-slogan {
        font-size: 6.5vw;
        text-align: center;
        margin-bottom: 10%;
        letter-spacing: 0.2vw;
        line-height: 1.4;
    }

    .info-item {
        display: flex;
        align-items: center;
        background-color: transparent;
        border-radius: 50cqw;
        isolation: isolate;
        transform: translateZ(0);
        flex-direction: column;
    }

    .info-list {
        gap: 4vw;
    }
    .info-label {
        width: 50%;
        font-size: 4vw;
        padding: 2vw 0;
        border-radius: 99vw;
        margin-bottom: 3vw;
    }
    .info-content {
        font-size: 3.5vw;
        border-radius: 99vw;
        padding: 2.5vw 4vw;
        width: 85%;
        display: flex;
        flex-direction: column;
        margin-bottom: 4vw;
    }
    #btn-s1 {
        font-size: 6vw;
        padding: 3vw 24vw;
        margin: 7vw 0 18vw;
        border-radius: 99vw;
    }
    .npc01-s1 {
        display: none;
    }
    .npc02-s1 {
        display: none;
    }

    .eventbox-s2 {
        grid-template-columns: 1fr;
        gap: 12vw;
        margin-top: 6vw;
        margin-bottom: 25vw;
        background-color: transparent;
    }
    .event-s2,
    .event-s2-cos {
        width: 90vw;
    }
    .npc04 {
        display: none;
    }

    .npc05 {
        display: none;
    }
    .card-img-box {
        flex-direction: column;
        gap: 8vw;
        margin: 10vw 0;
    }
    .card-img-l,
    .card-img-r {
        width: 60vw;
        font-size: 5vw;
        gap: 4vw;
    }
    .card-title {
        font-size: 5vw;
        padding: 1vw 10vw;
        margin-top: 0;
        border-radius: 50vw;
    }
    .card-text {
        font-size: 4vw;
        text-align: center;
        width: 90vw;
        line-height: 1.6;
        margin: 3vw 0;
    }
    .card-box {
        flex-direction: column;
        gap: 10vw;
        width: 78vw;
        margin-top: 5vw;
    }
    .character-card,
    .character-cardS {
        max-width: 100%;
        border-radius: 4vw;
    }
    .character-cardS::after {
        border-width: 1vw;
        border-radius: 4vw;
    }
    .card-header {
        padding: 10vw 0 4vw;
    }
    .avatar-frame {
        width: 30vw;
    }
    .card-name01,
    .card-name02 {
        font-size: 5vw;
        margin-top: 4vw;
    }
    .card-body {
        padding: 6vw 4vw 10vw;
        gap: 4vw;
    }
    .attr-label {
        font-size: 5.5vw;
        letter-spacing: 0.2vw;
    }
    .attr-value {
        font-size: 4vw;
        line-height: 1.6;
    }
    .card-notice {
        font-size: 3.5vw;
        width: 90vw;
        margin: 5vw 0;
        line-height: 1.6;
    }

    #section-4 {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        padding-bottom: 0;
    }

    .notice-box {
        flex-direction: column;
        gap: 6vw;
        z-index: 5;
        margin: 10vw 0;
    }
    #Check-in,
    #Notice {
        width: 70vw;
        padding: 3vw;
        font-size: 5vw;
        border-radius: 99vw;
    }
    .npc03 {
        position: relative;
        width: 100%;
    }
    #gotop {
        width: 7vw;
        left: 3vw;
        bottom: 3vw;
        border-radius: 3vw;
        padding: 3vw;
    }
}


#btn-s1, .pop_send, #Check-in, #Notice, 
.popup-close, #gotop, #fb-login, #gp-login, 
#ios-login, #ro-logout, .right_btn01, .right_btn02 {
    touch-action: manipulation !important;
}

@media (hover: hover) {
    #btn-s1:hover, .pop_send:hover, #Check-in:hover, 
    #Notice:hover, .popup-close:hover, #gotop:hover {
        transform: scale(0.95);
    }
}


@media (hover: none) {
    #btn-s1:active, .pop_send:active, #Check-in:active, 
    #Notice:active, .popup-close:active, #gotop:active {
        transform: scale(0.95);
        transition: 0.05s !important;
    }
}