@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Montserrat", "Pretendard", "Noto Sans KR", sans-serif;
    color: #222;
    word-break: keep-all;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section_title {
    margin-bottom: 50px;
    text-align: center;
}

.section_title span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #777;
    letter-spacing: 0.12em;
}

.section_title h3 {
    font-size: 40px;
    font-weight: 700;
}

.section_title p {
    margin-top: 12px;
    color: #666;
}

.btn_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 48px;
    margin-top: 32px;
    border: 1px solid #222;
    font-size: 15px;
}