@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

:root {
    --mainColor : rgb(21, 202, 190);
    --borderColor: #ddd;
    --grayColor: #f6f6f6;
}

* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Pretendard-Regular', sans-serif; word-break: keep-all; line-height: 130%;}

a, ol, ul, li {text-decoration: none; list-style: none;}

header img {width: 100%;}

input[type="radio"] {
    width: 1rem;
    height: 1.5rem;
    vertical-align: top;
}

main {width: calc(100% - 40px); margin: 0 auto; max-width: 600px; padding-bottom: 2.5rem;}

main h2 {margin: 1.25rem 0; text-align: center;}

section {margin-bottom: 1.875rem;}

section h3 {margin-bottom: 0.25rem; font-weight: 600; position: relative; padding-left: 1rem; line-height: 1.5rem;}
section h3::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--mainColor);
}

section input[type="text"] {width: 100%; line-height: 2.5rem; border: 1px solid var(--borderColor); border-radius: 0.5rem; padding: 0 0.5rem;}

.radioWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.5rem 0;
    padding: 0.625rem;
    border-radius: 0.5rem;
    background: rgb(243 251 251);
}

.radioWrap p {width: 33.3%; white-space: nowrap;}

.radioWrap p label {display: inline-block; line-height: 1.5rem;}

.agreeBox {border: 1px solid var(--borderColor); padding: 1.25rem; border-radius: 1rem;}

.agreeBox h3 {font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem;}

.agreeBox p {font-size: 0.875rem; color: #444; margin-bottom: 10px;}

.agreeBox div {text-align: center; margin-top: 1.25rem;}
.agreeBox input[type="checkbox"] {width: 1rem; height: 1.5rem; vertical-align: top;}
.agreeBox label {display: inline-block; line-height: 1.5rem; font-size: 1.125rem; font-weight: 600;}

.notice {font-size: 0.875rem; color: #444; margin: 10px 0;}

.btnSubmit {
    display: block;
    width: 100%;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 0;
    color: #fff;
    background-color: var(--mainColor);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
}

footer {
    background: #444;
    color: #fff;
    padding: 1.25rem;
}

footer>div {margin: 0 auto; max-width: 600px;}

footer>div p {line-height: 1.5rem; font-size: 0.8125rem;}