@charset "utf-8";

/* 共通 */
body {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.5rem;
    /* background: linear-gradient(90deg, rgb(161, 214, 205), rgb(233, 239, 246)); */
}

@media screen and (min-width: 767px) {
    body {
        font-size: 17px;
        letter-spacing: 0.04em;
    }
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    margin: 0;
    padding: 0;
}



h4 {
    margin-top: 20px;
}

/* 個別のニュースページ */
main{
    padding-top: 100px;
    padding-bottom: 50px;
}

.topic-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.news-desc {
    width: 90%;
    margin: 0 auto;
}

.pickup-head,
.news-head,
.event-head {
    width: 90%;
    margin: 0 auto;
}

.pickup-head h2,
.news-head h2,
.event-head h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding: 8px 0;
    color: #fff;
}

.pickup-head h2 {
    background-color: rgb(253, 56, 49);
}
.news-head h2 {
    background-color: rgb(52, 133, 199);
}
.event-head h2 {
    background-color: rgb(73, 183, 42);
}

.pickup-head h3,
.news-head h3,
.event-head h3 {
    text-align: left;
    
}
.pickup-head .news-date,
.news-head .news-date,
.event-head .news-date {
    /* border: 1px solid; */
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 5px;
}

.news-img {
    margin-bottom: 40px;
}

.news-img img {
    display: block;
    width: 90%;
    margin: 0 auto;
}
.back-to-topic{
    margin-bottom: 50px;
}
.back-to-topic img{
    width: 70px;
    position: absolute;
    right: 15px;
}
@media screen and (min-width: 767px) {
    .news-img img {
        max-width: 700px;
    }
    .back-to-topic img{
        width: 90px;}
}