@charset "UTF-8";

.news-detail {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 50px;
}

@media all and (max-width: 768px) {
    .news-detail {
        padding: 0 20px;
    }
}

.news-detail .date {
    color: rgba(88, 88, 88, 0.6);
}

.news-detail .ttl {
    text-align: left;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 60px 0;
}

@media all and (max-width: 768px) {
    .news-detail .ttl {
        font-size: 1.1rem;
    }
}
.news-detail .text {
    letter-spacing: 2px;
    line-height: 1.8;
}

@media all and (max-width: 768px) {
    .news-detail .text {
        font-size: .9rem;
    }
}

.news-detail .link {
    margin-top: 20px;
}

.news-detail .link a {
    color: #5191B2;
    text-decoration: underline;
}

.moreBox {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.btn.btnLink {
    background: #fff;
    color: #5191B2;
    border: 1px solid #5191B2;
    border-radius: 5px;
}

@media (min-width: 769px) {
    .btn.btnLink {
        padding: 10px;
        width: 150px;
    }
}



