@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");

* {
    font-family: "SUIT", sans-serif;
}

html,
body {
    margin: 0px;
    padding: 0px;
    position: relative;
    height: 100%;
    background-color: #fff;
    scroll-behavior: smooth;
}

ul,
li,
dl,
dd,
dt {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

:focus {
    outline: none !important;
}

.wrap {
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

.container {
    width: 818px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.bg {
    position:relative;
}
.bg img {
    width: 100%;
    margin-bottom:-5px;
}
.bg .add_btn {
    position:absolute;
    bottom:50px;
    width:450px;
    left:50%;
    transform: translateX(-50%);
}

.form {
    background-color: #fff;
    margin-top: -5px;
}

.form .formArea {
    background-color: #fff;
    text-align: left;
    margin: 0 auto;
    border-radius: 10px;
    padding: 40px;
    padding-top:10px;
}

.form .formArea p,
.form .formArea dl dt {
    font-size: 24px;
    font-weight: 800;
}

.form .formArea ul li {
    margin-bottom: 20px;
}

.form .formArea dl {
    display: flex;
    align-items: center;
}

.form .formArea dl dt {
    width: 145px;
}

.form .formArea dl dd {
    width: 100%;
}

.form .formArea dl dd input:not([type="radio"]),
.form .formArea dl dd textarea {
    width: 97%;
    height: 48px;
    padding-left: 15px;
    border: 2px solid #cdcdcd;
    font-size: 18px;
}
.form .formArea dl dd textarea {
    padding:20px;
    font-size:18px;
    width:93%;
}
input[type="image"] {
    margin:0 auto;
}
input[type="checkbox"] {
    width:24px;
    height:24px;
    margin-right:10px;
}
.form .formArea ul li .typeChkList li {
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:0px;
}
.typeChkList li label {
    flex-grow: 1;
    text-align:center;
    line-height:3;
    cursor: pointer;
}
.typeChkList li label:first-child {
    margin-right:5px;
}
.typeChkList li label input[type="radio"] {
    display:none;
}
.typeChkList li label div {
    background-color:#f5f5f5;
    font-size:18px;
    font-weight:700;
}
.typeChkList li label input[type="radio"]:checked ~ div {
    background-color:#333;
    color:#fff;
}
.info {
    margin-top:20px;
    justify-content: center;
    font-size:18px;
    display:flex;
    align-items: center;
}
.info a {
    color:#000;
    font-weight:700;
    text-decoration: underline;
    margin-left:8px;
}
.textAlign {
    text-align:center;
    margin-top:40px;
}
/* 티커 스타일 */
.ticker {
    background-color: #fff;
    padding: 20px 0px;
    margin:20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.ticker_inner {
    position: relative;
    height: 100%;
}

.ticker_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: absolute;
    width: calc(100% - 40px);
}

/* 3개씩 그룹으로 보이도록 위치 설정 */
.ticker_item:nth-child(1) {
    top: 20px;
    opacity: 1;
}

.ticker_item:nth-child(2) {
    top: 80px;
    opacity: 1;
}

.ticker_item:nth-child(3) {
    top: 140px;
    opacity: 1;
}

.ticker_item:nth-child(4) {
    top: 20px;
    opacity: 0;
}

.ticker_item:nth-child(5) {
    top: 80px;
    opacity: 0;
}

.ticker_item:nth-child(6) {
    top: 140px;
    opacity: 0;
}


.ticker_text {
    flex: 1;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.ticker_date {
    font-size: 24px;
    color: #888;
    margin: 0 20px;
    white-space: nowrap;
}

.ticker_status {
    background-color: #d5ffe7;
    color: #02dd79;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

/* 퀵배너 스타일 */
.quick-banner {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #ff6b9d, #ffd93d);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease, opacity 0.5s ease;
    animation: quickBannerPulse 2s infinite;
}

.quick-banner:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.quick-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px;
    text-decoration: none;
    color: #fff;
    font-weight:900;
    font-size: 30px;
    white-space: nowrap;
}

.quick-banner-text {
    text-align: center;
}

@keyframes quickBannerPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    }
}

@media (max-width: 700px) {
    .ticker_item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ticker_text {
        text-align: center;
    }
    
    .ticker_date {
        margin: 0;
    }
    
    .quick-banner {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px 25px;
    }
    
    .quick-banner-link {
        padding: 15px 25px;
        font-size: 16px;
    }
}