.post{
    margin-top: var(--header-height-pc);
    background-image: url('../img/topSectionBg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post section{
    padding: 0px 0px 80px;
}

@media screen and (max-width: 768px) {
    .post{
        margin-top: var(--header-height-sp);
    }
}

.post__outer{
    padding: 40px 0;
}

.post__back a{
    color: var(--color-green-main);
}

.post__inner{
    background-color: var(--color-white);
    padding: 80px;
    border-radius: 16px;
}

@media screen and (max-width: 768px) {
    .post__inner{
        padding: 40px;
    }
}

@media screen and (max-width: 480px) {
    .post__inner{
        padding: 16px;
    }
}

.post__header{
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-black-20);
}

.post__title{
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-black-main);
    margin-bottom: 16px;
}

.post__meta{
    font-size: 14px;
    color: var(--color-black-80);
}

@media screen and (max-width: 768px) {
    .post__title{
        font-size: 24px;
    }
}

.post__content p{
    margin-bottom: 24px;
    line-height: var(--line-height-lg);
}