/* ------------------------------
 ニュース
------------------------------ */
.contents h1 {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #494442;
}
.contents h1::before {
	content: "";
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	left: 0;
	bottom: -2px;
	background-color: #f8b500;
}
.date {
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    color: #a4a1a0;
    margin-bottom: 10px;
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
    .contents {
        padding-top: 240px;
    }
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
    .contents {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    .contents h1 {
        font-size: 2.2rem;
    }
}

