@font-face{font-family:'Tmon'; src:url('../fonts/TmonMon.woff')}

/*이미지 리사이징됐을때 화질개선 이미지랜더링*/
img[src$=".gif"], img[src$=".png"] {
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

div {
background: url(chessboard.gif) no-repeat 50% 50%;
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input:focus { outline: none; }
button{cursor: pointer;}
a{text-decoration: none;}

/* 공통 */
.font-tmon{font-family:'Tmon';}
.text-yellow{color: yellow !important;}
.text-red{color: rgb(255, 85, 85) !important;}
.m-br{display: none;}
.pc-br{}
.w-100{width: 100%;}


html, body {
    scroll-behavior: auto !important;
  }

*{font-family: 'pretendard', sans-serif;box-sizing: border-box;}
html{}
body{font-family: 'pretendard', sans-serif;line-height: 1.3;}

.wrap{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.sec1-tit{
    width: 100%;
    position: absolute;
    background: rgb(118, 12, 206);
    padding: 18px;
    text-align: center;
    border-radius: 0 0 34px 34px;
}
.sec1-tit span{
    color: #fff;
    font-size: 24px;
}

/* 폼스타일 */

.db_box {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.db_info {
    margin-bottom: 20px;
}

.q_a {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}



.q_a li:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.select_area {
    display: flex;
    gap: 10px;
    padding-left: 0;
}

.select_area li {
    width: 100%;
    list-style: none;
}

.select_area input {
    display: none;
}

.select_area label {
    width: 100%;
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.select_area input:checked + label {
    border-color: #007bff;
    background-color: #007bff;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

table td {
    padding: 10px;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.center {
    text-align: center;
    font-weight: bold;
}

.db_btn {
    width: 100%;
    margin-top: 15px;
}

.db_btn:hover {
    opacity: 0.8;
}

.btn-type1{
    width: 100%;
    height: 60px;
    background: #a304ff;
    color: #fff;
    font-family: 'Tmon';
    font-size: 24px;
    outline: 0;
    border: 0;
    border-radius: 15px;
}

.phone-group{
    display: flex;
    align-items: center;
}


.sec5-timeBox{
    padding: 24px 18px;
    background-color: rgb(255, 196, 0);
}

.count_time p{
    width: 100%;
    display: flex;
    text-align: center;
}
.count_time p span{
    width: 25%;
    text-align: center;
}
.colon{width: 10px !important;}

.dday-view span{font-size: 30px;font-weight: 500;}


/* 슬라이더 */
#section7{background: #ebddfc;}
.sec7-cont{padding: 40px 18px;}
.sec7-tit{
    text-align: center;
    font-family: 'Tmon';
    color: #141314;
}
.sec7-tit p{font-size: 24px;}
.sec7-tit h4{font-size: 42px;}
.swiper {
    width: 100%;
    height: 350px;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.li-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
}


/* 푸터 */
footer{
    text-align: center;
    padding: 14px;
}
.ft-img img{width: 100px;}
.ft-inner p{
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}


/* 퀵버튼 */
#quick-btn{
    display: none;
    position: fixed;
    bottom: 0;
    max-width: 640px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(247, 182, 3);
    text-align: center;
    padding: 16px 6px;
    z-index: 9;
    border-top: 1px solid rgb(216, 158, 0);
}
.quick-cont{font-size: 22px;color: #000;font-weight: 600;}





/* 반응형 */
@media screen and (max-width:768px){
    .m-br{display: block;}
    .pc-br{display: none;}
    .sec1-tit{padding: 12px;position: static;border-radius: 0;}
    .select_area2{flex-wrap: wrap;}

}