@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: rgb(248, 248, 248);
    line-height: 1;
}

body > div.title {
    width: 90%;
    height: 300px;
    margin: 0 auto;

    text-align: left;
    padding: 20px 0;
}

.title .maintitle {
    position: relative;
    padding: 0 0 0 40px;
    margin: 80px 0 0 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 40px;
    font-weight: 800;
}

svg {
    position: absolute;
    left: 0%;
    top: 50%;
    width: 35px;
    text-align: center;
    transform: translateY(-50%);
}

svg:nth-child(1) {  
    transform-origin: 50%;
    animation: spin 4s ease infinite normal;
}

@keyframes spin {
    0% {
        transform: rotateY(0deg) translateY(-50%);
    }
    100% {
        transform: rotateY(360deg) translateY(-50%);
    }
}

.title .maintitle h1 {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 40px;
    font-weight: 800;
    transform: translateY(-2px);
}

.title p.subtitle {
    margin: 0;
    padding: 15px 0 0 15px;

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.post .img-canvas {
    overflow: hidden;
    width: 100%;
}

.post .img-canvas img {
    width: 100%;
}

.post .maintext {
    margin: 20px auto;
    width: 90%;
}

.post .maintext div {
    display: block;
    margin: 15px 0;
    width: 100%;
    height: 2px;
    background: #2f2f2f;
}

.post .maintext p {
    margin: 15px 0;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
}

.post .maintext p.policy {
    color: #2f2f2f;
    font-size: 10px;
}

.post .maintext p a {
    color: #0090f2;
    text-decoration: none;
}

.post .maintext video.phone {
    display: block;
    margin: 50px auto;
    width: 50%;
    max-width: 300px;
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 15px 1px rgb(192, 192, 192);
}

.home {
    display: block;
    padding: 15px;
    margin: 20px auto;
    width: 90%;
    box-sizing: border-box;
    border-radius: 20px;
    background: url("../images/icons/arrow-right-s-line.svg") no-repeat right 15px center, #fff;
    color: #141414;
    font-size: 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 40px;
    text-decoration: none;
}