@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
}
ul,ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: #222;
}
body {
    height: calc(100vh - 280px);
}

/* header */
header {
    padding-top: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    /* padding: 1rem 0; */
}
header div#main-logo {
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}
header ul#main-menu {
    display: flex;
    height: 100%;
    align-items: center;
}
header ul#main-menu>li {
    margin: 0 1rem;
}
header ul#main-menu>li.login a {
    color: #759fe6;
    font-size: 1.5rem;
    font-weight: bold;
}
header ul#main-menu>li.my-page a {
    color: #222;
    font-size: 1.5rem;
}


/* main-page */
.contents-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
}
#main-page {
    height: calc(100% - 40px);
    display: flex;
}
#main-page div {
    width: 50%;
    height: 100%;
    display: flex;
}
#main-page div.left-cont {
    flex-direction: column;
    padding: 5rem 0;
}
#main-page div.left-cont div.main-title h1{
    padding-left: 0.5rem;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}
#main-page div.left-cont div.main-title h1 p {
    font-size: 5rem;
    font-weight: bolder;
    position: relative;
}
#main-page div.left-cont div.main-title h1 p::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 103%;
    height: 35px;
    background: #759fe6;
    left: 50%;
    transform: translate(-50%);
    z-index: -50;
}
#main-page div.left-cont div.main-title {
    width: 100%;
}
#main-page div.left-cont div.main-btn-box div.main-btns {
    display: flex;
    align-items: center;
    width: 600px;
}
#main-page div.left-cont div.main-btn-box div.sub-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0.5rem;
    margin-right: 1rem;
}
#main-page div.left-cont div.main-btn-box div.sub-menu a {
    border: 2px solid #759fe6;
    width: 300px;
    height: 70px;
    border-radius: 10px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    color: #759fe6;
}
#main-page div.left-cont div.main-btn-box a.main-btn {
    padding-left: 0.5rem;
    width: 350px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #759fe6;
    height: 150px;
    border-radius: 10px;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px #666;
}
#main-page div.main-img-box {
    justify-content: center;
    align-items: center;
}
#main-page div.main-img {
    position: relative;
    min-width: 800px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0.5rem;
}
#main-page div .main-img::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: #759fe6;
    z-index: -10;
    filter: blur(110px);
}
#main-page div.main-img img {
    width: 100%;
}
#main-info {
    height: 40px;
    background: #cbdaf2;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    box-shadow: 0px 1px 10px #333;
}
#main-info div{
    margin: 0 1rem;
}
#main-info div.contact {
    display: flex;
    align-items: center;
    margin-right: 5rem;
}
#main-info div.contact h3 {
    margin: 0 0.5rem;
}

/* footer */
footer {
    box-shadow: 0px -1px 5px #333;
    height: 210px;
    background: #8ea4c9;
    width: 100%;
    position: relative;
    padding-top: 0.5rem;
}
footer::after {
    content: '';
    position: absolute;
    top: 65px;
    width: 100%;
    height: 1px;
    background: #aaa;
}
footer>* {
    color: #fff;
}
#footer-box {
    height: auto;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 950px 380px;
    row-gap: 20px;
    align-items: center;
}
.footer-logo {
    width: 80px;
    text-align: center;
    margin-right: 3rem;
}
.footer-logo img {
    width: 100%;
}
.footer-info {
    flex: 2;
    padding-top: 0.2rem;
}
.footer-info>div.footer-title {
    display: flex;
    align-items: center;
}
div.copyright>p.privacy {
    padding-bottom: 0.5rem;
}
div.copyright>p.privacy>a {
    color: #fff;
}
div.copyright>p.address {
    font-size: 0.8rem;
}
div.copyright>p.address span{
    display: block;
}
.footer-sub-logo {
    width: 500px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
}
.footer-sub-logo>img:nth-child(2) {
    margin: 0 2rem;
}