@charset "utf-8";
#fullWrap{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/*-----------------------------------------------
 * HEADER
-------------------------------------------------*/
.l-header{
	position: relative;
	padding: min(calc(40 / var(--vw-min) * 100vw), 40px) 0 0;
}
.l-header__logo{
	width: min(calc(320 / var(--vw-min) * 100vw), 320px);
	margin: 0 auto;
}
.l-header__logo--link{
	display: block;
	width: 100%;
}
.l-header__logo--link img{
	width: 100%;
}

@media screen and (hover:hover) and (pointer: fine){
	.l-header__logo--link{
		transition: transform .25s ease;
	}
	.l-header__logo--link:hover{
		transform: scale(102.5%);
	}
}

@media screen and (max-width:768px){
	.l-header{
		padding-top: calc(48 / var(--vw-min) * 100vw);
	}
	.l-header__logo{
		width: calc(320 / var(--vw-min) * 100vw);
	}
}


/*-----------------------------------------------
 * MAIN
-------------------------------------------------*/
.main{
	width: 100%;
	position: relative;
	padding-bottom: min(calc(160 / var(--vw-min) * 100vw), 160px);
}
.contentSection{
	position: relative;
	padding-top: min(calc(80 / var(--vw-min) * 100vw), 80px);
}

@media screen and (max-width:768px){
	.main{
		padding-bottom: calc(192 / var(--vw-min) * 100vw);
	}
	.contentSection{
		padding-top: calc(96 / var(--vw-min) * 100vw);
	}
}


/**
* contentSection__title
**/
.contentSection__title{
	width: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
	padding: 0 calc(80 / var(--vw-min) * 100vw);
}
.contentSection__title--en{
	font-family: var(--font-en);
	font-size: min(calc(86 / var(--vw-min) * 100vw), 86px);
	line-height: 0.5582;
	letter-spacing: 0;
	color: var(--color-main);
}
.contentSection__title--ja{
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	font-weight: 700;
	line-height: 1.2;
}

@media screen and (max-width:768px){
	.contentSection__title{
		gap: calc(32 / var(--vw-min) * 100vw);
		padding: 0 calc(48 / var(--vw-min) * 100vw);
	}
	.contentSection__title--en{
		font-size: calc(96 / var(--vw-min) * 100vw);
	}
	.contentSection__title--ja{
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
}


/* Animation */
.js-inContent .contentSection__title--en{
	opacity: 0;
}
.js-inContent .contentSection__title--en > span{
	display: inline-block;
	transform-origin: center bottom;
	opacity: 0;
	animation: ani_enTitle 1s var(--easing-outquart) forwards;
	animation-play-state: paused;
}
.js-inContent .contentSection__title--en > span:nth-child(1){ animation-delay: 0.2s; }
.js-inContent .contentSection__title--en > span:nth-child(2){ animation-delay: 0.25s; }
.js-inContent .contentSection__title--en > span:nth-child(3){ animation-delay: 0.3s; }
.js-inContent .contentSection__title--en > span:nth-child(4){ animation-delay: 0.35s; }
.js-inContent .contentSection__title--en > span:nth-child(5){ animation-delay: 0.4s; }
.js-inContent .contentSection__title--en > span:nth-child(6){ animation-delay: 0.45s; }
.js-inContent .contentSection__title--en > span:nth-child(7){ animation-delay: 0.5s; }
.js-inContent .contentSection__title--en > span:nth-child(8){ animation-delay: 0.55s; }
.js-inContent .contentSection__title--en > span:nth-child(9){ animation-delay: 0.6s; }
.js-inContent .contentSection__title--en > span:nth-child(10){ animation-delay: 0.65s; }
.js-inContent.--is-ani .contentSection__title--en > span{
	animation-play-state: running;
}
@keyframes ani_enTitle{
	from{
		opacity: 0;
	}
	20%, to{
		opacity: 1;
	}

	0%,
	55%,
	100%{
		transform: translateY(0) rotate(0deg);
	}
	15%{
		transform: translateY(-0.22em) rotate(-3deg);
	}
	28%{
		transform: translateY(-0.03em) rotate(1.5deg);
	}
	38%{
		transform: translateY(-0.1em) rotate(-1deg);
	}
}

body.--is-loaded .js-inContent .contentSection__title--en{
	opacity: 1;
}
.js-inContent .contentSection__title--ja{
	opacity: 0;
	transform: translateY(0.5em) scale(0.65, 1);
	transition: transform .45s cubic-bezier(.27,.02,.28,1.73) .25s, opacity .3s ease .25s;
}
.js-inContent.--is-ani .contentSection__title--ja{
	opacity: 1;
	transform: translateY(0);
}



.contentSectionIn{
	width: 100%;
	padding-top: min(calc(80 / var(--vw-min) * 100vw), 80px);
	padding-left: calc(80 / var(--vw-min) * 100vw);
	padding-right: calc(80 / var(--vw-min) * 100vw);
}

@media screen and (max-width:768px){
	.contentSectionIn{
		padding-top: calc(64 / var(--vw-min) * 100vw);
		padding-left: calc(48 / var(--vw-min) * 100vw);
		padding-right: calc(48 / var(--vw-min) * 100vw);
	}
}


/**
* linkBox
**/
.linkBox__link{
	min-width: min(calc(240 / var(--vw-min) * 100vw), 240px);
	display: inline-block;
	text-decoration: none;
	padding: min(calc(14 / var(--vw-min) * 100vw), 14px) min(calc(40 / var(--vw-min) * 100vw), 40px);
	border-radius: 100rem;
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	line-height: 1;
	background-color: var(--color-black);
	color: var(--color-white);
	text-align: center;
}
.linkBox__link.-en{
	font-family: var(--font-en);
}
.linkBox__txt{
	display: inline-block;
	position: relative;
	z-index: 1;
}
.linkBox__link.-en .linkBox__txt{
	padding-top: 0.25em;
}
.linkBox__txt.-sns_x{
	display: inline-flex;
	align-items: center;
	gap: min(calc(12 / var(--vw-min) * 100vw), 12px);
	padding-left: min(calc(32 / var(--vw-min) * 100vw), 32px);
}
.linkBox__txt.-sns_x:after{
	content: '';
	display: inline-block;
	width: min(calc(20 / var(--vw-min) * 100vw), 20px);
	height: min(calc(20 / var(--vw-min) * 100vw), 20px);
	-webkit-mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	mask: url(../img/common/sns/icon_x.svg) no-repeat center / contain;
	background-color: var(--color-white);
}
.linkBox__link.-en .linkBox__txt.-sns_x:after{
	margin-top: -0.125em;
}

@media screen and (hover:hover) and (pointer: fine){
	.linkBox__link{
		position: relative;
		transition: color .3s ease, background-color .3s ease;
	}
	.linkBox__txt.-sns_x:after{
		transition: background-color .3s ease;
	}
	.linkBox__link:after{
		content: '';
		position: absolute;
		inset: 0;
		border: 2px solid var(--color-black);
		border-radius: 100rem;
	}

	.linkBox__link:hover{
		color: var(--color-black);
		background-color: var(--color-white);
	}
	.linkBox__link:hover .linkBox__txt.-sns_x:after{
		background-color: var(--color-black);
	}
}

@media screen and (max-width:768px){
	.linkBox__link{
		min-width: calc(288 / var(--vw-min) * 100vw);
		padding: calc(16 / var(--vw-min) * 100vw) calc(32 / var(--vw-min) * 100vw);
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
	.linkBox__txt.-sns_x{
		gap: calc(8 / var(--vw-min) * 100vw);
		padding-left: calc(34 / var(--vw-min) * 100vw);
	}
	.linkBox__txt.-sns_x:after{
		width: calc(26 / var(--vw-min) * 100vw);
		height: calc(26 / var(--vw-min) * 100vw);
	}
}




/**
* contIn - bg
**/
.contIn__bg{
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.contIn__bg-krag{
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: min(calc(684 / var(--vw-min) * 100vw), 684px);
}
.contIn__bg-krag_img{
	width: calc(883 / var(--vw-min) * 100vw);
	/* width: min(calc(883 / var(--vw-min) * 100vw), 883px); */
	height: min(calc(684 / var(--vw-min) * 100vw), 684px);
	margin-left: auto;
	background: url(../img/common/deco/deco_shape-karaage_large.svg) no-repeat center / contain;
}




/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
.c-news{
	min-height: min(calc(684 / var(--vw-min) * 100vw), 684px);
}
.c-news .contentSectionIn{
	position: relative;
	z-index: 1;
}


/*-----------------------------------------------
 * NEWS - Cont（一覧 / 詳細の出し分け）
-------------------------------------------------*/
.newsCont{
	display: none;
}

/*-----------------------------------------------
 * NEWS - Lists
-------------------------------------------------*/
.newsLists{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: min(calc(16 / var(--vw-min) * 100vw), 16px);
}
.newsList{
	width: 100%;
	padding-bottom: min(calc(8 / var(--vw-min) * 100vw), 8px);
}
.newsList__link{
	text-decoration: none;
	display: block;
	pointer-events: none;
	position: relative;
}
.newsList__link:before{
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color-main);
	border-radius: min(calc(48 / var(--vw-min) * 100vw), 48px);
	transform: translateY(min(calc(8 / var(--vw-min) * 100vw), 8px));
}
.newsList__linkIn{
	display: flex;
	align-items: center;
	pointer-events: auto;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(80 / var(--vw-min) * 100vw), 80px) min(calc(24 / var(--vw-min) * 100vw), 24px) 0;
	border-radius: min(calc(48 / var(--vw-min) * 100vw), 48px);
	border: 2px solid var(--color-black);
	background-color: var(--color-white);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.newsList__time{
	display: block;
	padding: 0 calc(24 / var(--vw-min) * 100vw);
	font-family: var(--font-en);
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-main);
	flex-shrink: 0;
	position: relative;
}
.newsList__title{
	width: 100%;
	line-height: 2;
	position: relative;
}
.newsList__arrow{
	position: absolute;
	top: 0;
	right: min(calc(20 / var(--vw-min) * 100vw), 20px);
	bottom: 0;
	margin: auto 0;
	width: min(calc(40 / var(--vw-min) * 100vw), 40px);
	height: min(calc(40 / var(--vw-min) * 100vw), 40px);
	background-color: var(--color-black);
	border-radius: 50%;
}
.newsList__arrow:after{
	content: '';
	position: absolute;
	top: 0;
	right: 25%;/* 10 */
	bottom: 0;
	margin: auto 0;
	width: 37.5%;/* 15 */
	height: 60%;/* 24 */
	-webkit-mask: url(../img/common/arrow-r.svg) no-repeat center / contain;
	mask: url(../img/common/arrow-r.svg) no-repeat center / contain;
	background-color: var(--color-main);
}

@media screen and (hover:hover) and (pointer: fine){
	.newsList__linkIn{
		transition: transform .3s ease;
	}
	.newsList__linkIn:before{
		content: '';
		position: absolute;
		inset: 0;
		background-color: rgba(var(--color-main-rgb), 20%);
		transform: translateY(min(calc(24 / var(--vw-min) * 100vw), 12px));
		opacity: 0;
		transition: transform .4s ease, opacity .2s ease;
	}
	.newsList__arrow:after{
		transition: transform .3s ease;
	}
	.newsList__link:hover .newsList__linkIn{
		transform: translateY(min(calc(4 / var(--vw-min) * 100vw), 4px));
	}
	.newsList__link:hover .newsList__linkIn:before{
		opacity: 1;
		transform: translateY(0%);
	}
	.newsList__link:hover .newsList__arrow:after{
		transform: translateX(20%);
	}
}


@media screen and (max-width:768px){
	.newsLists{
		width: 100%;
		gap: calc(24 / var(--vw-min) * 100vw);
	}
	.newsList{
		padding-bottom: calc(8 / var(--vw-min) * 100vw);
	}
	.newsList__link:before{
		transform: translateY(calc(8 / var(--vw-min) * 100vw));
		border-radius: calc(64 / var(--vw-min) * 100vw);
	}
	.newsList__linkIn{
		padding: calc(24 / var(--vw-min) * 100vw) calc(80 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
		border-width: max(calc(2 / var(--vw-min) * 100vw), 1px);
		flex-direction: column;
		align-items: flex-start;
		gap: calc(4 / var(--vw-min) * 100vw);
		border-radius: calc(48 / var(--vw-min) * 100vw);
	}
	.newsList__time{
		padding-left: 0;
		padding-right: calc(24 / var(--vw-min) * 100vw);
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
	.newsList__title{
		line-height: 1.75;
		-webkit-line-clamp: 2;
	}
	.newsList__arrow{
		right: calc(16 / var(--vw-min) * 100vw);
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
	}
}


.news__linkArea{
	width: 100%;/* 900 */
	display: flex;
	justify-content: center;
	gap: min(calc(40 / var(--vw-min) * 100vw), calc(40px * var(--max-percent)));
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
}

@media screen and (max-width:768px){
	.news__linkArea{
		width: 100%;
		justify-content: center;
		margin-top: calc(64 / var(--vw-min) * 100vw);
		padding: 0 calc(48 / var(--vw-min) * 100vw);
	}
}


/**
* Paging
**/
.pagingLists{
	display: flex;
	width: 100%;
	justify-content: center;
	gap: min(calc(16 / var(--vw-min) * 100vw), calc(16px * var(--max-percent)));
}
.paging__link{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	min-width: min(calc(48 / var(--vw-min) * 100vw), 48px);
	min-height: min(calc(48 / var(--vw-min) * 100vw), 48px);
	border-radius: 100rem;
	font-family: var(--font-en);
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	line-height: 1;
	color: var(--color-white);
	background-color: var(--color-black);
	text-decoration: none;
	padding: 0 0.25em;
}
.pagingText{
	position: relative;
	z-index: 1;
}
.paging__link.is-active{
	background-color: var(--color-main);
	color: var(--color-black);
	pointer-events: none;
	border: 1px solid var(--color-white);
}

@media screen and (hover:hover) and (pointer: fine){
	.paging__link{
		position: relative;		
	}
	.paging__link::before{
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 100rem;
		background-color: rgba(var(--color-main-rgb), 75%);
		transform: scale(60%);
		opacity: 0;
		transition: transform .4s ease, opacity .3s ease;
	}
	.paging__link:hover::before{
		opacity: 1;
		transform: scale(100%);
	}
}

@media screen and (max-width:768px){
	.pagingLists{
		gap: calc(24 / var(--vw-min) * 100vw);
	}
	.paging__link{
		width: calc(64 / var(--vw-min) * 100vw);
		height: calc(64 / var(--vw-min) * 100vw);
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
}



/*-----------------------------------------------
 * NEWS - Article
-------------------------------------------------*/
#newsArticleCont{
	width: 100%;
	max-width: calc(1040px * var(--max-percent));
	margin: 0 auto;
}
.newsArticle{
	width: 100%;
	position: relative;
}
.newsArticle:before{
	content: '';
	position: absolute;
	inset: 0;
	border-radius: min(calc(40 / var(--vw-min) * 100vw), 40px);
	background-color: var(--color-main);
	transform: translate(0.5em, 0.5em);
}
.newsArticleIn{
	position: relative;
	width: 100%;
	padding-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
	padding-right: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	padding-bottom: min(calc(80 / var(--vw-min) * 100vw), 80px);
	padding-left: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	border-radius: min(calc(40 / var(--vw-min) * 100vw), 40px);
	border: 2px solid var(--color-black);
	background-color: var(--color-white);
}
.newsArticle__title{
	display: flex;
	flex-direction: column;
	gap: min(calc(8 / var(--vw-min) * 100vw), 8px);
	padding-bottom: min(calc(14 / var(--vw-min) * 100vw), 14px);
	border-bottom: 2px solid var(--color-black);
}
.newsArticle__title--date{
	font-family: var(--font-en);
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	line-height: 1;
	color: var(--color-main);
}
.newsArticle__title--title{
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	font-weight: 500;
	line-height: 2;
}

.newsArticle__cont{
    width: 100%;
	line-height: 2;
	padding-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
	position: relative;
	z-index: 1;
}

@media screen and (max-width:768px){
	#newsArticleCont{
		max-width: 100%;
	}
	.newsArticle:before{
		border-radius: calc(48 / var(--vw-min) * 100vw);
	}
	.newsArticleIn{
		padding-top: calc(48 / var(--vw-min) * 100vw);
		padding-right: calc(48 / var(--vw-min) * 100vw);
		padding-bottom: calc(64 / var(--vw-min) * 100vw);
		padding-left: calc(48 / var(--vw-min) * 100vw);
		border-width: max(calc(2 / var(--vw-min) * 100vw), 1px);
	}
	.newsArticle__title{
		gap: calc(8 / var(--vw-min) * 100vw);
		padding-bottom: calc(26 / var(--vw-min) * 100vw);
		border-width: max(calc(2 / var(--vw-min) * 100vw), 1px);
	}
	.newsArticle__title--date{
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
	.newsArticle__title--title{
		font-size: calc(30 / var(--vw-min) * 100vw);
		line-height: 1.75;
	}
	.newsArticle__cont{
		padding-top: calc(32 / var(--vw-min) * 100vw);
	}
}



/* img */
.newsArticle__cont img{
	display: inline-block;
	max-width: 100%;
	height: auto;
	margin: 0.5em 0;
}

/* aLink */
.newsArticle__cont a{
	display: inline;
	word-break: break-all;
	position: relative;
	text-decoration: underline;
	transition: .3s ease;
	text-underline-offset: 0.375em;
	color: var(--color-main);
}
.newsArticle__cont a[target="_blank"]:after{
	content: '';
	display: inline-block;
	margin: 0 0.5em 0 0.375em;
	width: 0.75em;
	height: 0.75em;
	-webkit-mask: url(../img/common/icon/icon_blank.svg) no-repeat center / contain;
	mask: url(../img/common/icon/icon_blank.svg) no-repeat center / contain;
	background-color: var(--color-main);
}
@media screen and (hover:hover) and (pointer: fine){
	.newsArticle__cont a{
		transition: filter .3s ease;
	}
	.newsArticle__cont a:hover{
		filter: brightness(125%);
	}
}


/* youtube */
.youtubeWrap{
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 1em 0;
}
.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%;
}


/* left */
.newsArticle__cont .left{
	text-align: left;
}

/* center */
.newsArticle__cont .center{
	text-align: center;
}

/* right */
.newsArticle__cont .right{
	text-align: right;
}


/* margin */
.newsArticle__cont .mt{
	margin-top: 1em;
}
.newsArticle__cont .mb{
	margin-bottom: 1em;
}

/* padding */
.newsArticle__cont .pt{
	padding-top: 1em;
}
.newsArticle__cont .pb{
	padding-bottom: 1em;
}
.newsArticle__cont .pl{
	padding-left: 1em;
}
.newsArticle__cont .pr{
	padding-right: 1em;
}

/* inlineBlock */
.newsArticle__cont span.-ib{
	display: inline-block;
}

/* indent */
.newsArticle__cont .indent{
	padding-left: 1em;
	text-indent: -1em;
}
.newsArticle__cont span.indent{
	display: inline-block;
}


/* dlLists */
.newsArticle__cont .dllists > div.dllist{
	margin: 0.5em 0;
}
.newsArticle__cont .dllists > div.dllist > dt{
	padding-bottom: 0.25em;
}
@media screen and (min-width:769px){
	.newsArticle__cont .dllists > div.dllist.pFlex{
		display: flex;
	}
	.newsArticle__cont .dllists > div.dllist.pFlex > dt{
		padding-right: 1em;
		padding-bottom: 0;
		flex-shrink: 0;
	}
}
@media screen and (max-width:768px){
	.newsArticle__cont .dllists > div.dllist{
		margin: 0.75em 0;
	}
}
.newsArticle__cont .dllists > div.dllist > dt{
	font-weight: 700;
}
.newsArticle__cont .dllists > div.dllist > dt > span{
	background: linear-gradient(rgba(235, 134, 134, 40%), rgba(231, 186, 85, 20%)) right bottom / 100% 40% no-repeat;
}



/* ol */
.newsArticle__cont ol {
	padding-left: 1.25em;
}
.newsArticle__cont ol > li{
	list-style: auto;
}


/* h1-h4 */
.newsArticle__cont h1,
.newsArticle__cont h2,
.newsArticle__cont h3,
.newsArticle__cont h4{
	font-weight: 900;
	color: var(--color-main);
}
.newsArticle__cont h1,
.newsArticle__cont h2,
.newsArticle__cont h3,
.newsArticle__cont h4{
	font-size: 112.5%;
}
.newsArticle__cont h1 > .htag_txt,
.newsArticle__cont h2 > .htag_txt,
.newsArticle__cont h3 > .htag_txt,
.newsArticle__cont h4 > .htag_txt{
	background: linear-gradient(rgba(235, 134, 134, 40%), rgba(231, 186, 85, 20%)) right bottom / 100% 40% no-repeat;
}

.newsArticle__cont > h5,
.newsArticle__cont > h6{
	font-weight: 700;
	padding: 0.5em 0;
	line-height: 1;
	color: var(--color-main);
}
.newsArticle__cont > h5 > .htag_txt,
.newsArticle__cont > h6 > .htag_txt{
	display: inline-block;
	padding: 0.5em 0.5em;
	border: 1px solid var(--color-main);
}


.flex-content{
	display: flex;
	flex-wrap: wrap;
}
.border{
	border: 1px solid var(--color-main);
	padding: 1em;
}

.flex-content > .cont30{
	width: 30%;
}

.flex-content > .cont70{
	width: 70%;
}

.flex-content > .cont100{
	width: 100%;
}
@media screen and (max-width:768px){
	.flex-content > .cont30{
		width: 60%;
		margin-left: auto;
		margin-right: auto;
	}
	.flex-content > .cont70{
		width: 100%;
	}
}

/*-----------------------------------------------
 * ANIMATION - Scroll Animation
-------------------------------------------------*/
/**
* NEWS - list
**/
.newsList{
	opacity: 0;
	transform: translateY(2em);
	transition: transform .35s cubic-bezier(.27,.02,.28,1.73), opacity .35s ease;
}

.newsList:nth-of-type(1){
	transition-delay: .4s, .45s;
}
.newsList:nth-of-type(1) .newsList__link:before{
	transition-delay: .7s;
}
.newsList:nth-of-type(2){
	transition-delay: .45s, .5s;
}
.newsList:nth-of-type(2) .newsList__link:before{
	transition-delay: .75s;
}
.newsList:nth-of-type(3){
	transition-delay: .5s, .55s;
}
.newsList:nth-of-type(3) .newsList__link:before{
	transition-delay: .8s;
}
.newsList:nth-of-type(4){
	transition-delay: .55s, .6s;
}
.newsList:nth-of-type(4) .newsList__link:before{
	transition-delay: .85s;
}
.newsList:nth-of-type(5){
	transition-delay: .6s, .65s;
}
.newsList:nth-of-type(5) .newsList__link:before{
	transition-delay: .9s;
}
.newsList:nth-of-type(6){
	transition-delay: .65s, .7s;
}
.newsList:nth-of-type(6) .newsList__link:before{
	transition-delay: .95s;
}
.newsList:nth-of-type(7){
	transition-delay: .7s, .75s;
}
.newsList:nth-of-type(7) .newsList__link:before{
	transition-delay: 1s;
}
.newsList:nth-of-type(8){
	transition-delay: .75s, .8s;
}
.newsList:nth-of-type(8) .newsList__link:before{
	transition-delay: 1.05s;
}
.newsList:nth-of-type(9){
	transition-delay: .8s, .85s;
}
.newsList:nth-of-type(9) .newsList__link:before{
	transition-delay: 1.1s;
}
.newsList:nth-of-type(10){
	transition-delay: .85s, .9s;
}
.newsList:nth-of-type(10) .newsList__link:before{
	transition-delay: 1.15s;
}

.js-inContent.--is-ani .newsList{
	opacity: 1;
	transform: translateX(0%);
}


.js-inContent .newsList__link:before{
	transition: transform .3s ease;
}
.js-inContent:not(.--is-ani) .newsList__link:before{
	transform: translateY(0);
}

.news__linkArea{
	opacity: 0;
	transform: translateY(1.5em);
	transition: transform .35s cubic-bezier(.27,.02,.28,1.73), opacity .35s ease;
}
.js-inContent.--is-ani .news__linkArea{
	opacity: 1;
	transform: translateY(0em);
	transition-delay: 0.45s;
}

.contIn__bg-krag{
	transform: translateX(20%);
	transition: transform .45s cubic-bezier(.35, .15, .3, 1.08)
}
body.--is-loaded .contIn__bg-krag{
	transform: translateX(0%);
	transition-delay: .6s;
}

.contIn__bg-krag_img{
	transform: scale(80%);
	opacity: 0;
	transition: transform .35s cubic-bezier(.35, .15, .3, 1.08), opacity .3s ease;
}
body.--is-loaded .contIn__bg-krag_img{
	opacity: 1;
	transform: scale(100%);
	transition-delay: .6s;
}



/* Article */
.newsArticle{
	opacity: 0;
	transform: translateY(2em);
	transition: transform .35s cubic-bezier(.27,.02,.28,1.73), opacity .35s ease;
	transition-delay: .4s, .45s;
}
.js-inContent.--is-ani .newsArticle{
	opacity: 1;
	transform: translateY(0);
}
.newsArticle:before{
	transition: transform .3s ease;
	transition-delay: .75s;
}
.js-inContent:not(.--is-ani) .newsArticle:before{
	transform: translate(0, 0);
}