@charset "utf-8";
/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
.newsLists{
	width: 100%;
}
.newsList{
	width: 100%;
	position: relative;
	border-bottom: 1px solid #1db8ec;
}
.newsList:nth-of-type(1){
	border-top: 1px solid #1db8ec;
}
.newsList__link{
	text-decoration: none;
	line-height: 1.75;
	padding: 20px;
	display: flex;
	align-items: center;
	position: relative;
}
.newsTitle__date{
	display: inline-block;
	flex-shrink: 0;
	font-family: var(--font-eng);
	color: var(--color-blue);
	position: relative;
	padding-right: 30px;
	letter-spacing: 0;
	z-index: 2;
	transition: .3s ease;
}
.newsTitle__date:after{
	content: '';
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 10px;
	height: 10px;
	margin: auto 0;
	-webkit-mask: url(../img/common/icon_star.svg) no-repeat center / contain;
	mask: url(../img/common/icon_star.svg) no-repeat center / contain;
	background-color: var(--color-blue);
	transition: .3s ease;
}
.newsTitle__txt{
	display: block;
	position: relative;
	z-index: 2;
	font-weight: 500;
	transition: .3s ease .05s;
}



@media (hover: hover) and (pointer: fine){
	.newsList__link:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: linear-gradient(var(--color-blue), var(--color-blue));
		background-repeat: no-repeat;
		background-size: 0% 100%;
		background-position: right bottom;
		transition: background-size .4s ease;
		opacity: 80%;
	}
	.newsList__link:hover::before{
		background-size: 100% 100%;
		background-position: left bottom;
	}
	.newsList__link:hover .newsTitle__date,
	.newsList__link:hover .newsTitle__txt{
		color: #FFF;
	}
	.newsList__link:hover .newsTitle__date:after{
		background-color: #fff;
	}
}

@media screen and (max-width:767px){
	.newsList__link{
		padding: var(--sp-size-20);
		display: block;
		line-height: 1.8;
	}
	.newsTitle__date{
		padding-right: var(--sp-size-24);
	}
	.newsTitle__date:after{
		width: var(--sp-size-16);
		height: var(--sp-size-16);
		right: 0;
	}
}


/** is-ani **/
.newsList{
	opacity: 0;
	transform: translateY(24px);
	transition: .4s cubic-bezier(.25,.46,.45,.94);
}
.newsList:nth-of-type(1){
	transition-delay: .4s;
}
.newsList:nth-of-type(2){
	transition-delay: .5s;
}
.newsList:nth-of-type(3){
	transition-delay: .6s;
}
.newsList:nth-of-type(4){
	transition-delay: .7s;
}
.newsList:nth-of-type(5){
	transition-delay: .8s;
}
.newsList:nth-of-type(6){
	transition-delay: .9s;
}
.newsList:nth-of-type(7){
	transition-delay: 1.0s;
}
.newsList:nth-of-type(8){
	transition-delay: 1.1s;
}
.newsList:nth-of-type(9){
	transition-delay: 1.2s;
}
.newsList:nth-of-type(10){
	transition-delay: 1.3s;
}
.wp-pagenaviWrap{
	transition-delay: 1.4s;
}
#news .contentIn.is-ani .newsList{
	opacity: 1;
	transform: translateY(0);
}



/*-----------------------------------------------
 * NEWS - newsArticle 
-------------------------------------------------*/
.newsArticle{
	padding-bottom: 80px;
	position: relative;
}
.newsArticle:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 9px;
	background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 22%, #FFF 22%, #FFF 56%, var(--color-blue) 56%, var(--color-blue) 100%);
}
@media screen and (min-width: 768px){
	.newsTitle{
		display: flex;
	}
	.newsTitle .newsTitle__date{
		flex-shrink: 0;
		width: clamp(6em, 20%, 200px);
		padding-right: unset;
		font-size: 24px;
		line-height: 1;
	}
	.newsTitle .newsTitle__date:after{
		content: unset;
	}
}

.newsTitle .newsTitle__txt{
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 40px;
	position: relative;
}
.newsTitle .newsTitle__txt:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 9px;
	background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue) 22%, #FFF 22%, #FFF 56%, var(--color-blue) 56%, var(--color-blue) 100%);
}

.newsArticleIn{
	width: 100%;
	padding-top: 40px;
	padding-left: clamp(6em, 20%, 200px);
	word-break: break-all;
	font-weight: 500;
}

/* htag */
.newsArticleIn h1,
.newsArticleIn h2,
.newsArticleIn h3,
.newsArticleIn h4{
	font-size: 18px;
	font-weight: 700;
	position: relative;
	padding-bottom: 4px;
	line-height: 1.6;
	margin-top: 40px;
}
.newsArticleIn h1 .htag_txt,
.newsArticleIn h2 .htag_txt,
.newsArticleIn h3 .htag_txt,
.newsArticleIn h4 .htag_txt{
	position: relative;
	background: linear-gradient(0deg, rgba(30,185,238,100%), rgba(30,185,238,100%) 30%, rgba(255,255,255,0%) 30%);
}
.newsArticleIn h5,
.newsArticleIn h6{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 40px;
	color: var(--color-blue);
}


/* p */
.newsArticleIn p.center{
	text-align: center;
}
.newsArticleIn p.right{
	text-align: right;
}


/* a */
.newsArticleIn a {
	color: var(--color-blue);
	font-weight: 500;
}


/* img */
.newsArticleIn img {
	height: auto!important;
	max-width: 100%;
}
.newsArticleIn img.aligncenter{
	display: block;
	margin: 0 auto;
}
.newsArticleIn img.alignright{
	display: block;
	margin-left: auto;
}


/* youtube */
.youtubeWrap{
	max-width: 100%;
	margin: 0 auto;
}
.youtubeInWrap{
	display: block;
	width: 100%;
	position: relative;
	padding-top: 56.25%;
	margin: auto;
}
.youtubeWrap iframe[src*="youtube"]{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* indent */
.indent{
	display: block;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px){
	.newsArticle{
		padding-bottom: var(--sp-size-80);
	}
	.newsArticle:after{
		height: var(--sp-size-9);
	}
	.newsTitle .newsTitle__date{
		font-size: var(--sp-size-24);
		padding-left: var(--sp-size-40);
	}
	.newsTitle .newsTitle__txt{
		font-size: var(--sp-size-26);
		padding-left: var(--sp-size-40);
		padding-right: var(--sp-size-40);
		padding-bottom: var(--sp-size-56);
	}
	.newsTitle .newsTitle__txt:after{
		height: var(--sp-size-9);
	}
	.newsArticleIn{
		line-height: 2;
		padding: var(--sp-size-40) var(--sp-size-40) 0;
	}
	.newsArticleIn h1,
	.newsArticleIn h2,
	.newsArticleIn h3,
	.newsArticleIn h4{
		font-size: var(--sp-size-26);
		padding-bottom: var(--sp-size-4);
		margin-top: var(--sp-size-48);
	}
	.newsArticleIn h5,
	.newsArticleIn h6{
		font-size: var(--sp-size-26);
		margin-top: var(--sp-size-48);
	}
}

/** is-ani **/
.newsArticle .newsTitle__date{
	opacity: 0;
	transform: translateY(20px);
	transition: .4s cubic-bezier(.25,.46,.45,.94) .65s;
}
.newsArticle .newsTitle__txt{
	opacity: 0;
	transform: translateY(10px);
	transition: .4s cubic-bezier(.25,.46,.45,.94) .6s;
}
.newsArticle .newsTitle__txt:after{
	opacity: 0;
	transform: translateY(10px);
	transition: .4s cubic-bezier(.25,.46,.45,.94) .7s;
}
.newsArticle .newsArticleIn{
	opacity: 0;
	transform: translateY(20px);
	transition: .4s cubic-bezier(.25,.46,.45,.94) .75s;
}
.newsArticle:after{
	opacity: 0;
	transform: translateY(20px);
	transition: .4s cubic-bezier(.25,.46,.45,.94) .8s;
}

.newsArticle.is-ani .newsTitle__date,
.newsArticle.is-ani .newsTitle__txt,
.newsArticle.is-ani .newsTitle__txt:after,
.newsArticle.is-ani .newsArticleIn,
.newsArticle.is-ani:after{
	opacity: 1;
	transform: translateY(0px);
}