@charset "UTF-8";
/* CSS Document */
/*------------------------------------

お知らせ一覧

------------------------------------*/

.news_more {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
/*
.news_more::after {
    content: "";
    flex-grow: 1;
}
*/
.news_more .content-section {
    position: relative;
    background-image: url(../../common/images/nami_03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.news_more .content_wrap {
    margin-bottom: 150px;
	
}
.news_more h4 {
    text-align: left;
    color: #323232;
}
.news_more .news_content{
	display: flex;
	flex-direction: column;
	margin-top: 0;
	width: 30%;
}
.news_more .news_content .img-box {
    display: block;
	overflow: hidden;
    aspect-ratio: 16 / 9;
}
.news_more .news_content .img-box img {
	transition: transform 0.3s ease-out;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_more .news_content:hover img {
    transform: scale(1.1);
}

.news_more .news_content .box {
    background-color: #F5F5F5;
    padding-top: 20px;
    text-align: left;
	flex-direction: column;
	align-items: flex-start;
}
.news_more .news_content .box .cat {
    display: inline-block;
    border: solid 1px #323232;
    text-align: center;
    padding: 3px 45px;
	margin-bottom: 1rem;
}
.news_more .news_content .box .date {
    margin-bottom: 1rem;
}
.news_more .news_content .box .txt {
    line-height: 1.5;
}


/*------------------------------------

お知らせ記事

------------------------------------*/

.news-article article.content_wrap{
	width: 860px;
}
.news-article h4{
	font-size: 39px;
    width: 100%;
    text-align: left;
	color: #323232;
	margin: 0;
}
.news-article .content_wrap .date{
	margin-top: 0.3rem;
}
.news_content{
	margin-top: 2rem;
}
.news-article .content_wrap p{
	text-align: left;
    line-height: 1.5;
}
.thumbnail_content{
	margin-top: 60px;
}

.file_dl_list {
	margin-top: 50px;
	text-align: left;
	background-color: #E6E8E9;
    padding: 20px 40px;
    border-radius: 30px;
}

/*------------------------------------

tb sp

------------------------------------*/

/* より一般的なタブレット範囲を対象にする場合（例: 768px から 1200px） */
@media only screen and (min-width: 768px) and (max-width: 1310px) {
	.news_more .news_content{
		width: 45%;
	}
}
/* スマートフォン版のスタイル */
  @media screen and (max-width: 767px) {
	.news_more .news_content{
		width: 45%;
	}
  	.news-article article.content_wrap {
		width: 100%;
	}
	.news-article h4 {
		font-size: 28px;
	}
}
/* スマートフォン版のスタイル */
  @media screen and (max-width: 400px) {
	.news_more .news_content{
		width: 100%;
	}
}