@charset "utf-8";

.news-item {   
    border-bottom: 1px solid var(--grey);
}

.news-item:first-child {
    border-top: 1px solid var(--grey);
}

.news-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px 20px 10px;
    transition: all .3s;
}

.news-cate-flex {
    display: flex;
    align-items: center;
}

.news-text-box {
    flex: 1;
    margin: 0 15px 0 0;
    overflow: hidden;
}

.news-date {
    width: 105px;
    margin: 0 20px 0 0;
    color: var(--base-body-color);
    font-family: var(--font-famly04);
    font-size: 14px;
    font-weight: 400;
    max-width: max-content;
}

.news-cate {
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-cate {
    display: inline-block;
    width: 100%;
    max-width: max-content;
    min-width: 120px;
    padding: 1px 10px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--tertiary);
    text-align: center;
    border: 1px solid var(--tertiary);
    flex: 1;
	word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-title {
    color: var(--base-body-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 10px 0 0;
}

.news-arrow-box {
	max-width: 40px;
	width: 10%;
	margin: 0;
	transition: all .3s;
}

.news-item:hover .news-title {
    text-decoration: underline;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 414px) {
  
	.news-date {
		margin: 0 40px 0 0;
	}

} /* min-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 768px) {
  
	.news-flex {
		padding: 30px 20px 30px 20px;
	}

	.news-cate {
		margin: 0 15px 0 0
	}
	
	.news-date {
        width: 105px;
		font-size: 15px;
	}

	.news-cate{
		font-size: 15px;
	}


} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1024px) {

    .news-cate {
		font-size: 16px;
    }
  
    .news-date {
		font-size: 16px;
		}
  
    .news-title {
		font-size: 20px;
    }


} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
