
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;900&display=swap');
*{
    margin: 0;
    padding: 0;
}

/* トップ画像 */
.img img{
    width: 100vw;
    height: 600px;
    object-fit: contain;
}
.img-live img{
    width: 100vw;
    max-height: 600px;
    object-fit: contain;
}

.img, .img-live{
    position: relative;
}

/* news */
.news, .livereport{
    background-color: #F7F5F5;
    padding: 30px;
}
.newsTitle, .livereportTitle{
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.newsTitle, .livereportTitle h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
    word-break: break-word;
}
.newsContent, .livereportContent{
    margin: 0 auto;
    max-width: 1000px;
}
.text{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:300;
    margin: 20px;
    /* text-align: center; */
    display: block;
}
.text span{
    text-align: left;
    display: inline-block;
    line-height: 2;
}
.text p {
    line-height: 1.5em;
}
.text img{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px){
    .img img{
        height: 250px;
    }
    .newsTitle, .livereportTitle {
        padding: 10px 0;
    }
    .newsTitle, .livereportTitle h1 {
        font-size: 24px;
        line-height: 1.5;
    }
    .text{
        margin: 20px 0;
        font-size: 16px;
    }
    .news, .livereport{
        padding: 20px;
    }
}
/* スクロール時 */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}

/* 前後の記事リンク */
.c-post_link {
    max-width: 1000px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    line-height: 1.5em;
}
.c-post_link a:hover {
    color: #b32d2d;
}
.c-post_link--prev {
    text-align: right;
}
.c-post_link div span {
    font-size: 12px;
    display: block;
}
@media screen and (max-width: 768px){
    .c-post_link {
        display: block;
    }
    .c-post_link div {
        width: 100%;
        display: block;
        padding: 1em;
    }
}