@charset "UTF-8";
body {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.026em;
    padding-top: 78px;
    padding-bottom: 232px;
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 36px;
    padding-right: 36px;
}

h1 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

h1::before,
h1::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

h1::before {
    width: 100%;
    height: 1px;
    background: #f2f2f2;
}

h1::after {
    width: 12em;
    height: 6px;
    margin: 0 auto;
    background: #06c755;
    border-radius: 6px;
    transform: translate(0,2.5px);
}

.container {
    max-width: 950px;
    margin: 0 auto;
}

.container section {
    max-width: 800px;
    margin: 0 auto;
}

.container section:first-child {
    padding-top: 76px;
}

.container section + section {
    margin-top: 35px;
}

.container h2 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.container h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    width: 6px;
    height: 30px;
    background-color: #06c755;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container p {
    margin: 12px 0 14px 0;
}

.container a {
    color: #06c755;
    -webkit-text-decoration: underline #06c755;
    text-decoration: underline #06c755;
}

@media (max-width: 767.9px) {
    h1 {
        font-size: 24px;
    }
}