@charset "utf-8";

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.news-area {
    max-width: 1620px;
    width: 100%;
    margin: auto;
}

.news-side {
    margin: 60px 0 0;
}

.news-list > section {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px 0;
}

.news-item {
    overflow: hidden;
}

.news-link {
    display: block;
    color: inherit;
    position: relative;
}

.news-link:hover {
    color: inherit;
}

.news-link > .news-img {
    aspect-ratio: 350/219;
    overflow: hidden;
    transition: .3s;
    margin: 17px 0 0;
}

img + .no-img {
    display: none;
}

.news-link > .news-img > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .3s;
}

.news-link:hover > .news-img {
    filter: brightness(.5);
}

.news-cate {
	max-width: 100%;
	width: fit-content;
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.4em;
	text-align: center;
	color: #632C0A;
	border: solid 1px #632C0A;
	border-radius: 100vmax;
	padding: 2px 10px;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-date {
	display: block;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.4em;
	margin: 10px 0 0;
}

.news-title {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.25em;
	margin: 7px 0 0;
}

/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/

.news-detail {
    max-width: 100%;
    width: 100%;
}

.news-detail .news-title {
    border-bottom: solid 1px;
    padding: 0 0 10px;
    margin: 20px 0 0;
}

.news-detail .news-img {
    text-align: center;
    margin: 20px 0 0;
}

.news-content {
    margin: 15px 0 0;
}

.news-content a {
    color: var(--primary);
    text-decoration: underline;
}

.news-content a:hover {
    text-decoration: none;
	opacity: 0.65;
}

.news-detail .news-cate {
    white-space: unset;
	text-overflow: unset;
    word-break: unset;
}

.news-btn {
    max-width: 290px;
    width: 100%;
    display: block;
    border: solid 1px var(--secondary);
    color: var(--secondary);
    letter-spacing: 0.05em;
    line-height: 1.45em;
    padding: 15px;
    text-align: center;
}

.news-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.news-pdf-btn {
    margin: 30px auto 0;
}

.news-back-btn {
    margin: 30px auto 0;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-box:not(:first-child) {
    margin: 30px 0 0;
}

.category-box > section {
    margin: 10px 0 0;
}

.category-header {
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    background: var(--secondary);
    color: var(--primary);
    padding: 10px;
}

.category-link {
    display: block;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    color: var(--secondary);
    padding: 15px 10px;
    border-bottom: solid 1px var(--secondary);
}

.category-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/2;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:576px) {

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.news-list > section {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
  

.webgene-pagination {
    grid-column: 1/3;
}


}/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.news-area {
    display: flex;
    justify-content: space-between;
}
  
.news-main {
    max-width: 920px;
    width: 75%;
}

.news-side {
    width: 20%;
    margin: 0 0 0 5%;
}
	
.news-cate {
	font-size: 14px;
}

.news-date {
	font-size: 14px;
}

.news-title {
	font-size: 18px;
}
    
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {
  
/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.news-list > section {
	grid-template-columns: repeat(3,1fr);
	gap: 50px;
}

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

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

.news-title {
	font-size: 20px;
}
	
/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/


	
/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/

.news-detail {
    font-size: 16px;
}

.news-detail .news-img {
    margin: 40px 0 0;
}
    
.news-content {
    margin: 40px 0 0;
}

.news-pdf-btn {
    margin: 40px auto 0;
}
    
.news-back-btn {
    margin: 40px auto 0;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/4;
}

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.news-detail .news-title {
	font-size: 30px;
}
    
}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */