@charset "UTF-8";

/*-------------------------
  news
---------------------------*/

.CMS-NEWS-INDEX {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding-bottom: 60px;
	max-width: 1012px;
	margin: auto;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 0;
    gap: 1.6rem;
}
.article .CMS-NEWS-INDEX {
	display: flex;
}

.CMS-NEWS-INDEX img {
	width: 100%;
	height: auto;
	height: 12.5rem;
}

.CMS-NEWS-INDEX a {
	text-decoration: none;
}

.top-news .CMS-NEWS-INDEX {
	padding-bottom: 0;
}

.CMS-NEWS-INDEX > * {
	width: 31%;
	margin-bottom: 40px;
}

.CMS-NEWS-INDEX > *:nth-of-type(3n) {
	margin-right: 0;
}

.CMS-NEWS-TITLE {
	font-size: 24px;
	line-height: 1.6;
	padding: 10px 0 12px;
	position: relative;
	font-weight: bold;
}


.CMS-NEWS-CONTENT img {
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
}

.CMS-NEWS-ITEM a {
	transition: all 0.3s;
	display: block;
	padding: 0 0 0rem;
	/* text-decoration: underline; */
}

.CMS-NEWS-ITEM a:hover {
	opacity: 0.6;
}

.CMS-NEWS-TIME {
	margin-top: 1.875rem;
    color: #FFF;
    line-height: 1.5;
	font-size: max(12px,0.875rem);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 0.5px solid #FFF;
}

.CMS-NEWS-LINK {
	display: block;
	line-height: 1.6;
	color: #000;
	font-size: max(14px,1rem);
}

.article .CMS-NEWS-LINK {
	color: #FFF;
}

.CMS-NEWS-MORE-READ {
	background: #da1209;
	border: none;
	border-radius: 0.2rem;
	text-align: center;
	padding: 2rem 0;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	margin: 4rem auto 0 auto;
	width: 24rem;
	display: block;
	transition: all 0.3s;
	display: none;
}

@media screen and (max-width:768px) {
	.CMS-NEWS-MORE-READ {
		width: 100% !important;
	}
	.CMS-NEWS-INDEX {
		grid-template-columns: 1fr;
	}
}

.CMS-NEWS-MORE-READ:hover {
	cursor: pointer;
	opacity: 0.6;
}

.top-news .CMS-NEWS-MORE-READ {
	display: none;
}

.top-news .btn {
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.CMS-NEWS-INDEX {
		display: block;
		padding-bottom: 100px;
		padding: 0;
	}

	.CMS-NEWS-INDEX > * {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.CMS-NEWS-INDEX > *:last-of-type {
		margin-bottom: 0;
	}

	.CMS-NEWS-CONTENT img {
		width: 100%;
	}

	.CMS-NEWS-ITEM a {
		display: block;
	}

	.CMS-NEWS-LINK {
		display: block;
		width: auto;
	}
}

/* read more */
.CMS-NEWS-MORE-READ {
    background: #b41446;
    border: none;
    text-align: center;
    padding: 1.5rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #FFF;
    text-align: center;
    width: 28rem;
    display: block;
    transition: all .3s;
	position: absolute;
	bottom: -4rem;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);

}

.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* detail */
.CMS-NEWS-TITLE {
    font-size: 1.8rem;
    line-height: 1.6;
    position: relative;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		margin-bottom: 10px;
}

.CMS-NEWS-TITLE:after {
    bottom: -4px;
    content: "";
    display: block;
    position: absolute;
		height: 3px;
    width: 25%;
		background-color: #FFF;
}

.CMS-NEWS-CONTENT img {
    width: 70%;
    height: auto;
    display: block;
    margin: 4rem auto;
}


@media screen and (max-width:768px) {

	.CMS-NEWS-TITLE {
		font-size: 1.5rem;
	}
	.CMS-NEWS-MORE-READ { 
		position: initial;
		transform: initial;
		-webkit-transform: initial;
		-ms-transform: initial;
	}
}