/* =========================
   NEWS PAGE
========================= */

.news-page{

    width:90%;
    max-width:900px;
    margin:100px auto;

}

.news-page h1{

    text-align:center;
    font-size:56px;
    letter-spacing:4px;

    margin-bottom:70px;

}

.news-list{

    display:flex;
    flex-direction:column;
    gap:35px;

}

.news-card{

    display:block;

    background:#fffdf8;

    padding:35px;

    border:1px solid #e8dfd1;
    border-radius:18px;

    transition:.35s;

    box-shadow:0 8px 18px rgba(0,0,0,.05);

}

.news-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.news-date{

    font-size:16px;

    color:#8c8172;

    margin-bottom:12px;

    letter-spacing:1px;

}

.news-card h2{

    font-size:30px;

    margin-bottom:18px;

    line-height:1.5;

}

.news-text{

    font-size:19px;

    line-height:2;

    color:#555;

}

.readmore{

    display:inline-block;

    margin-top:25px;

    font-size:16px;

    letter-spacing:2px;

    color:#777;

    transition:.3s;

}

.news-card:hover .readmore{

    color:#000;

    transform:translateX(8px);

}

.news-more{

    text-align:right;

    margin-top:25px;

}

.news-more a{

    font-size:18px;

    transition:.3s;

}

.news-more a:hover{

    opacity:.6;

}

/* =========================
   NEWS ARTICLE
========================= */

.article{

    width:90%;
    max-width:900px;

    margin:100px auto;

}

.article-date{

    color:#8c8172;

    font-size:18px;

    margin-bottom:15px;

}

.article h1{

    font-size:48px;

    line-height:1.5;

}

.article-image{

    width:100%;

    margin:50px 0;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.article-text{

    font-size:22px;

    line-height:2.2;

}

.article-text p{

    margin-bottom:25px;

}

.back-button{

    display:inline-block;

    margin-top:70px;

    padding:15px 35px;

    border:2px solid #333;

    border-radius:999px;

    transition:.3s;

}

.back-button:hover{

    background:#333;

    color:#fff;

}

/* =========================
   NEWS スマホ
========================= */

@media(max-width:700px){

    .news-page{

        width:92%;
        margin:60px auto;

    }

    .news-page h1{

        font-size:38px;
        margin-bottom:40px;

    }

    .news-card{

        padding:25px;

    }

    .news-card h2{

        font-size:22px;

    }

    .news-text{

        font-size:16px;

    }

    .article h1{

        font-size:34px;

    }

    .article-text{

        font-size:18px;

    }

}

.embed-title{
    margin-top:50px;
    margin-bottom:20px;
    color:#1f3b73;
    font-size:1.5rem;
}

.sns-links{
    margin:40px 0 55px;
}

.sns-links a{
    display:block;
    width:fit-content;

    margin-bottom:18px;

    color:#333;
    text-decoration:none;

    font-size:22px;
    letter-spacing:1px;

    transition:.25s;
}

.sns-links a span{
    color:#6baed6;
    margin-left:12px;
}

.sns-links a:hover{
    transform:translateX(6px);
    opacity:.75;
}