@charset "utf-8";
/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
#news{
	padding-bottom: 88px;
}
#news .contentTitle__en{
	height: 80px;
}
#news .contentTitle__ja:before,
#news .contentTitle__ja:after{
	background-image: linear-gradient(var(--color-purple), var(--color-purple));
}

#news .contentIn{
	padding-top: 32px;
}

.newsLists{
	width: 100%;
}
.newsList{
	position: relative;
}
.newsList__link{
	width: 100%;
	display: flex;
	text-decoration: none;
	line-height: 1.25;
	padding: 40px 2.5%;/* 40 22 */
	align-items: flex-start;
}

/* date */
.newsList__dateWrap{
	position: relative;
	padding: 0 26px;
	overflow: hidden;
	flex-shrink: 0;
	margin-top: 6px;
}
.newsList__date{
	position: relative;
	z-index: 1;
	font-weight: 700;
	letter-spacing: 0;
}
.newsList__date-deco{
	position: absolute;
	top: 0;
	bottom: 0;
	transition: .4s ease;
}
.newsList__date-deco span{
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: var(--color-black);
	transition: .4s ease;
}
.newsList__date-deco.-l{
	left: 0;
	width: 26px;
	padding-right: 26px;
}
.newsList__date-deco.-l:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 26px;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	background-color: var(--color-black);
	transition: .4s ease;
}

.newsList__date-deco.-r{
	right: 0;
	width: 26px;
	padding-left: 26px;
}
.newsList__date-deco.-r:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 26px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background-color: var(--color-black);
	transition: .4s ease;
}

@media screen and (hover:hover) and (pointer: fine){
	.newsList__link:hover .newsList__date{
		color: #FFF;
		transition-delay: .2s;
	}
	.newsList__link:hover .newsList__date-deco{
		width: calc(50% + 13px);
	}
	.newsList__link:hover .newsList__date-deco span,
	.newsList__link:hover .newsList__date-deco.-l:before,
	.newsList__link:hover .newsList__date-deco.-r:before{
		background-color: var(--color-main);
	}
}

/* title */
.newsList__title{
	padding-left: 24px;
	letter-spacing: 0;
	display: block;
	line-height: 2;
}
@media screen and (hover:hover) and (pointer: fine){
	.newsList__title{
		transition: .4s ease;
	}
	.newsList__link:hover .newsList__title{
		color: var(--color-main)
	}
}

/* line */
.newsList__line{
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 8px;
}
.newsList__line:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-black);
}
.newsList__line > span{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
}
@media screen and (hover:hover) and (pointer: fine){
	.newsList__line:after,
	.newsList__line > span:before{
		transition: .6s ease;
	}
	.newsList__line > span:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 0%;
		transition: width 0.6s ease;
		background-color: var(--color-main);
	}
	.newsList__link:hover .newsList__line:after{
		left: calc(100% - 8px);
		background-color: var(--color-main);
	}
	.newsList__link:hover .newsList__line > span:before{
		width: 100%;
	}
}

@media screen and (max-width:768px){
	#news{
		padding-bottom: calc(104 / var(--vw-min) * 100vw);
	}
	#news .contentTitle__en{
		height: calc(100 / var(--vw-min) * 100vw);
	}
	#news .contentIn{
		padding-top: calc(32 / var(--vw-min) * 100vw);
	}
	.newsList__link{
		padding: var(--sp-size-48) var(--sp-size-24);
	}
	
	/* date */
	.newsList__dateWrap{
		padding: 0 calc(30 / var(--vw-min) * 100vw);
		margin-top: calc(8 / var(--vw-min) * 100vw);
	}
	.newsList__date-deco.-l{
		width: calc(30 / var(--vw-min) * 100vw);
		padding-right: calc(30 / var(--vw-min) * 100vw);
	}
	.newsList__date-deco.-l:before{
		width: calc(30 / var(--vw-min) * 100vw);
	}
	.newsList__date-deco.-r{
		width: calc(30 / var(--vw-min) * 100vw);
		padding-left: calc(30 / var(--vw-min) * 100vw);
	}
	.newsList__date-deco.-r:before{
		width: calc(30 / var(--vw-min) * 100vw);
	}

	/* title */
	.newsList__title{
		padding-left: var(--sp-size-32);
		line-height: 2;
	}
	
	/* line */
	.newsList__line{
		height: calc(16 / var(--vw-min) * 100vw);
	}
	.newsList__line:after{
		width: var(--sp-size-16);
		height: var(--sp-size-16);
	}
	.newsList__line > span{
		height: var(--sp-size-4);
	}
}



/*-----------------------------------------------
 * NEWS - DETAIL
-------------------------------------------------*/
.newsArticle{
	width: 100%;
	padding-top: 40px;
}
.newsTitle{
	display: flex;
	align-items: flex-start;
	position: relative;
	padding: 0 2.5% 40px;
	line-height: 1.25;
}
.newsTitle__title{
	order: 1;
	padding-left: 24px;
	letter-spacing: 0;
	display: block;
	line-height: 2;
}
.newsTitle__line{
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 8px;
}
.newsTitle__line:before,
.newsTitle__line:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-black);
}
.newsTitle__line:before{
	left: 0;
}
.newsTitle__line:after{
	right: 0;
}
.newsTitle__line > span{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
}




.newsArticleIn{
	width: 100%;
	position: relative;
	font-weight: 400;
	line-height: 1.75;
	word-break: break-all;
	padding-top: 16px;
}

.newsArticleIn h1,
.newsArticleIn h2,
.newsArticleIn h3,
.newsArticleIn h4{
	font-family: var(--font-sawarabi);
	font-size: 18px;
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
	line-height: 1.6;
	margin-top: 24px;
	color: #FFF;
}
.newsArticleIn h1 .htag_txt,
.newsArticleIn h2 .htag_txt,
.newsArticleIn h3 .htag_txt,
.newsArticleIn h4 .htag_txt{
	position: relative;
	background: var(--color-main);
}
.newsArticleIn h5,
.newsArticleIn h6{
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
	margin-top: 24px;
	color: var(--color-black);
}
.newsArticleIn h5 .htag_txt,
.newsArticleIn h6 .htag_txt{
	display: inline;
	position: relative;
	background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(255, 95, 165, 30%) 60%, rgba(255, 95, 165, 30%) 90%, transparent 90%, transparent 100%);
}

/* pre */
.newsArticleIn pre{
	margin-top: 24px;
	text-wrap: wrap;
}

/* p */
.newsArticleIn p {
	margin-top: 24px;
}
.newsArticleIn p.center{
	text-align: center;
}
.newsArticleIn p.right{
	text-align: right;
}


/* a */
.newsArticleIn a {
	color: var(--color-main);
	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%;
}


@media screen and (max-width: 768px){
	.newsArticle{
		padding-top: var(--sp-size-48);
	}
	.newsTitle{
		padding-left: var(--sp-size-24);
		padding-right: var(--sp-size-24);
		padding-bottom: var(--sp-size-48);
		flex-direction: column;
	}
	.newsTitle__title{
		width: 100%;
		padding-left: 0;
		font-size: var(--sp-size-28);
		padding-top: var(--sp-size-24);
	}
	.newsTitle .newsList__dateWrap{
		margin-top: 0;
	}

	.newsArticleIn{
		font-size: var(--sp-size-24);
		padding-top: var(--sp-size-36);
		padding-left: var(--sp-size-24);
		padding-right: var(--sp-size-24);
	}

	.newsArticleIn h1,
	.newsArticleIn h2,
	.newsArticleIn h3,
	.newsArticleIn h4,
	.newsArticleIn h5,
	.newsArticleIn h6{
		font-size: calc(26 / var(--vw-min) * 100vw);
		margin-top: calc(32 / var(--vw-min) * 100vw);
	}
	.newsArticleIn pre,
	.newsArticleIn p {
		margin-top: calc(32 / var(--vw-min) * 100vw);
	}
}