@charset "utf-8";

/* 내용관리 */
#container {
    padding-top: 0px;
}

#ctt {
    background: #fff
}

.ctt_admin {
    text-align: right
}

#ctt header h1 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

#ctt_con {
    margin: 80px auto;
    padding: 0px 10px;
    max-width: 1440px;
    width: 100%;
}

#ctt_con img {
    max-width: 100%;
    height: auto
}

.ctt_img {
    text-align: center
}


/* ===== 사이버 투어 미니맵 ===== */
.cybertour .img {
    position: relative;      /* 플로팅 버튼 기준점 */
    display: inline-block;   /* 이미지 크기에 맞게 박스 잡기 */
    width: 100%;
    line-height: 0;          /* 이미지 하단 여백 제거 */
}
.cybertour .img > img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 플로팅 사이버 투어 버튼 ===== */
.cybertour .cyberbtn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;

    width: 120px;
    height: 120px;
    border-radius: 50%;          /* 원형 (정사각형 원하면 16px 정도로) */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: linear-gradient(140deg, #1346d4 0%, #0d3299 100%);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    line-height: 1.35;

    box-shadow: 0 10px 24px rgba(19, 70, 212, 0.42);
    border: 3px solid rgba(255, 255, 255, 0.85);

    animation: cyberBounce 2.4s ease-in-out infinite;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* 호버 시 통통 멈추고 살짝 확대 */
.cybertour .cyberbtn:hover {
    animation-play-state: paused;
    transform: scale(1.06);
    box-shadow: 0 14px 30px rgba(19, 70, 212, 0.55);
}

.cybertour .cyberbtn__ico {
    font-size: 30px;
    line-height: 1;
}
.cybertour .cyberbtn__txt {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* 천천히 통통 튀는 애니메이션 */
@keyframes cyberBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* 은은한 후광(pulse) 효과 */
.cybertour .cyberbtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(19, 70, 212, 0.35);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: cyberPulse 2.4s ease-in-out infinite;
}
@keyframes cyberPulse {
    0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
    70%  { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
    .cybertour .cyberbtn {
        width: 92px;
        height: 92px;
        top: 14px;
        right: 14px;
        border-width: 2px;
    }
    .cybertour .cyberbtn__ico { font-size: 24px; }
    .cybertour .cyberbtn__txt { font-size: 12px; }
}
@media (max-width: 480px) {
    .cybertour .cyberbtn {
        width: 76px;
        height: 76px;
    }
    .cybertour .cyberbtn__ico { font-size: 20px; }
    .cybertour .cyberbtn__txt { font-size: 10px; }
}