:root {
    --header-height: 10rem;
    --fs-lg: 6.4rem;
    --fs-md: 4.8rem;
    --fs-sm: 3.2rem;
    --fs-xs: 2.4rem;
    --color-primary: #00A2C0;
    --color-primary2: #004E73;
    --color-primary3: #43747D;
    --color-green1: #03C75A;
    --color-green2: #03BA49;
    --color-yellow1: #FAE100;
    --color-yellow2: #F8D900;
    --color-error: #E10000;
    --color-red1: #FF6855;
    --color-red2: #FB544E;
    --color-blue1: #5380E4;
    --color-blue2: #263C96;
    --color-blue3: #3369E8;
    --color-gray1: #171717;
    --color-gray2: #262626;
    --color-gray3: #E5E5E5;
    --color-gray4: #D4D4D4;
    --color-graya3: #A3A3A3;
    --color-gray5: #525252;
    --color-gray7: #737373;
    --bg-gray1: #F5F5F5;
    --bg-gray2: #FAFAFA;
    --bg-green1: #F1FAF9;
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 5.8rem;
        --fs-lg: 3rem;
    }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
    border: 0;
    /* font-size: 100%; */
    vertical-align: baseline;
    -webkit-text-size-adjust: none;
    /* 크롬, 사파리, 오페라 신버전 / */
    -ms-text-size-adjust: none;
    /* / IE / */
    -moz-text-size-adjust: none;
    /* / 파이어폭스 / */
    -o-text-size-adjust: none;
    /* / 오페라 구버전 / */
}

/* HTML5 display-role reset for older browsers */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

*:not(.content *) {
    color: inherit;
}

*,
:after,
:before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

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

ul,
ol {
    list-style: none;
}

fieldset,
input {
    border: 0;
}

img {
    width: 100%;
    object-fit: cover;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    color: var(--color-gray2);
}

blockquote,
q {
    quotes: none;
}

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

input,
textarea,
button,
select {
    appearance: none;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    outline: 0;
}

input[type='radio'] {
    appearance: none;
}

/* ios 기본 스타일 제거 */
input {
    /*ios대응*/
    appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

/* 기본 체크박스 숨기기 */
.form_checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form_checkbox input[type="checkbox"] {
    display: none;
}

/* 체크 표시를 위한 커스텀 스타일 */
.form_checkbox .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 4px;
}

/* 체크박스가 선택되었을 때의 스타일 */
.form_checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #4CAF50;
    border: none;
}

/* 체크 표시 */
.form_checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* 체크박스가 선택되었을 때 체크 표시 보여주기 */
.form_checkbox input[type="checkbox"]:checked+.checkmark:after {
    display: block;
}

/* 체크 표시의 스타일 */
.form_checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


select {
    /*ios대응*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /*화살표 배경 넣기*/
    background: url('이미지경로') no-repeat 98% 50% #fff;
    /*화살표 select박스 오른쪽 중앙 배치,배경 흰색*/
}

select::-ms-expand {
    display: none;
    /* 화살표 없애기 for IE10, 11*/
}