/* **************************** popup area start ***************************** */
/*reset*/
html, body, div, span, applet, object, iframe,h1, /* h2, h3, h4, h5, h6, */
p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /* font: inherit;  -webkit-baseline-middle*/
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul, li, ol, menu {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none
}

button:focus,input:focus {
    outline: none;
}

/* bodyì— class .popup_openë¥¼ ë¶™ì´ë©´ í™œì„±í™”ë¨. */
.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

body.popup_open .popup {
    display: block;
}

.popup .popup-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    border-radius: 10px;
    background-image: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 85%, #FFFFFF00 88%);
    z-index: 2;
    max-width: 90%;
}

.popup .popup-title {
    width: 100%;
    padding: 10px;
    background-color: #005edd;
    border-radius: 9px 9px 0 0;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    font-weight: 600;
    box-sizing: border-box;
}

.popup .popup-content {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    min-width: 300px;
}

.popup .popup-wrap .popup-content .text-box p {
    letter-spacing: -0.05em;
    font-weight: 400;
    word-break: keep-all;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 15px;
}

.popup .popup-wrap .popup-content .text-box strong {
    display: block;
    color: #005edd;
    font-weight: 600;
    margin-bottom: 40px;
}

.popup .popup-wrap .popup-content .popup-btn ul {
    display: flex;
    justify-content: center;
}

.popup .popup-wrap .popup-content .popup-btn ul li {
    width: 100%;
    height: auto;
    margin-right: 20px;
    box-sizing: border-box;
}

.popup .popup-wrap .popup-content .popup-btn ul li:last-child {
    margin-right: 0;
}

.popup .popup-wrap .popup-content .popup-btn ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    font-weight: 600;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #005edd;
    color: #fff;
}

/* ì¸í’‹ë°•ìŠ¤ ìŠ¤íƒ€ì¼ */
.popup .popup-wrap .popup-content .input-box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.popup .popup-wrap .popup-content input {
    width: 100%;
    height: 6rem;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1.2rem;
    color: #4d4d4d;
    padding-left: 1rem;
}

/* *********** ë’·ë°°ê²½ ê²€ì •ìƒ‰ ë”¤ ì²˜ë¦¬ ë°•ìŠ¤ *********** */
body.popup_open .dimmed {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.8);
    overflow: hidden;
    z-index: 1;
}

/* body íƒœê·¸ì— ì—°ê²°í•  í´ëž˜ìŠ¤ */
/*body.popup_open{overflow: hidden}*/
