@charset "utf-8";
	.l-head{
		padding: 24px 0 0;
	}
    .l-logo {
        width: 239px;
		height: 101px;
        max-width: unset;
    }
@media screen and (max-width: 768px) {
	.l-head {
        padding-top: calc(24 / var(--vw-min) * 100vw);
        padding-bottom: calc(48 / var(--vw-min) * 100vw);
    }
    .l-logo {
        width: calc(224 / var(--vw-min) * 100vw);
		height: calc(128 / var(--vw-min) * 100vw);
        max-width: unset;
    }
}


.tMain__movieArea{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.tMain__movieAreaIn{
	position: sticky;
	left: 0;
	top: 0;
	height: min(100vh, 100%);
}
.tMain__movieAreaCont{
	width: 100%;
	height: min(100vh, 100%);
	align-items: center;
	position: relative;
	overflow: hidden;
}
.tMain__movieAreaCont:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/common/bg_txtur.png);
	background-repeat: repeat;
	background-size: 600px auto;
}
.tMain__movieAreaContIn{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	background-size: cover;
	background-repeat: no-repeat;
}
.tMain__movieAreaContIn:not(.-playing) #js-tMainMovie{
	opacity: 0;
}
#js-tMainMovie{
	width: 100%;
	height: 100%;
	transition: opacity .3s ease;
}
/*-----------------------------------------------
 * NEWS
-------------------------------------------------*/
.newsContent{
	position: relative;
}
@media screen and (max-width:768px){
	.newsContent{
		padding-bottom: calc(48 / var(--vw-min) * 100vw);
	}
}
.newsArea{
	width: 100%;
	color: #FFF;
	padding: 80px 0 40px;
	position: relative;
}
.newsAreaContIn{
	display: block;
	width: 100%;
	padding: 0 min(calc(40 / var(--vw-min) * 100vw), 40px);
}

.newsArea .cont_h2--txt:first-letter{
	color: var(--color-yellow);
}


.newsAreaContent{
	display: block;
	width: 100%;
	max-width: calc(720 / var(--vw-min) * 100vw);
	margin: 0 auto;
	padding-top:min(calc(79 / var(--vw-min) * 100vw), 79px)
}
@media screen and (max-width: 768px) {
    .newsAreaContent {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw) 0;
    }
}
@media screen and (max-width:768px){
	.newsArea{
		width: 100%;
		max-width: 100%;
		padding: 0 0 calc(48 / var(--vw-min) * 100vw);
	}
	.newsAreaCont{
		width: 100%;
		max-width: 100%;
		padding-left: 0;
	}
	.newsAreaContIn{
		padding: 0 6.4%;/* 0 48 */
	}

}
 .ttl_decoTxt{
	position: absolute;
	top:max(calc(-80 / var(--vw-min) * 100vw), -80px);
	right: max(calc(-180 / var(--vw-min) * 100vw), -180px);
	margin: auto;
	width:min(calc(220 / var(--vw-min) * 100vw), 220px);
	height:min(calc(111 / var(--vw-min) * 100vw), 111px);
	background: url(../img/ttl/ttl_update.svg) no-repeat center center / contain;
}
@media screen and (max-width:768px){
	.ttl_decoTxt{
		top:calc(-100 / var(--vw-min) * 100vw);
		right: calc(48 / var(--vw-min) * 100vw);
	}
}
/**
* newsLists
**/

.newsList:not(:last-child){
	margin-bottom: 30px;
}
.newsList__link{
	width: 100%;
	height: min(calc(132 / var(--vw-min) * 100vw), 132px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	background-color: #000;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(68 / var(--vw-min) * 100vw), 68px) min(calc(24 / var(--vw-min) * 100vw), 24px) 0;
	display: block;
	position: relative;
	text-decoration: none;
	color: #FFF;
	line-height: 1;
}
.newsList__link:after{
	content: '';
	position: absolute;
	bottom: min(calc(42 / var(--vw-min) * 100vw), 42px);
	right: min(calc(24 / var(--vw-min) * 100vw), 24px);
	width: 24px;
	height: 14px;
	-webkit-mask: url(../img/common/arrow_r.svg) no-repeat right bottom / contain;
	mask: url(../img/common/arrow_r.svg) no-repeat right bottom / contain;
	background-color: #FFF;
}
.newsList__time{
	font-family: var(--font-en);
	color: #FFF;
	display: inline-block;
	background-color: #666666;
	width: min(calc(134 / var(--vw-min) * 100vw), 134px);
	display: flex;
	align-items: center;
    justify-content: center;
}
.newsList__title{
	line-height: 2;
	padding-top: min(calc(10 / var(--vw-min) * 100vw), 10px);
	position: relative;
	padding-left: min(calc(24 / var(--vw-min) * 100vw), 24px);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	transition: .4s ease;
}

@media screen and (hover:hover) and (pointer: fine){

	.newsList__link:hover .newsList__title{
		color: var(--color-accent);
		text-decoration: underline;
	}
	.newsList__link:hover .newsList__title > span {
		background-size: 100% 10%;
		background-position: left bottom;
	}
	.newsList__link:hover::after{
		transition: .4s ease;
		background-color: var(--color-accent);
		transform: translateX(25%);
	}
}


@media screen and (max-width:768px){
	.newsList{
		background-size: var(--sp-size-24) var(--sp-size-24);
	}
	.newsList:not(:last-child){
		margin-bottom: calc(32 / var(--vw-min) * 100vw);
	}
	.newsList__link{
		padding-right: calc(116 / var(--vw-min) * 100vw);
	}
	.newsList__link {
        width: 100%;
        height: calc(176 / var(--vw-min) * 100vw);
        padding: min(calc(24 / var(--vw-min) * 100vw), 24px) calc(115 / var(--vw-min) * 100vw) min(calc(24 / var(--vw-min) * 100vw), 24px) 0;
        display: block;
        position: relative;
        text-decoration: none;
        color: #FFF;
        line-height: 1;
    }

	.newsList__link:after{
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(28 / var(--vw-min) * 100vw);
		margin-bottom: 0;
	}
	.newsList__time{
		width:calc(180 / var(--vw-min) * 100vw);
		padding:0 calc(12 / var(--vw-min) * 100vw);
	}
	.newsList__title{
		padding-top: var(--sp-size-12);
		min-height: calc(108 / var(--vw-min) * 100vw);
	}
	.newsList__title:before{
		content: unset;
	}
}



/**
* newsAreaContentIn
**/
.newsAreaContentIn{
	margin-top: 80px;
	padding-bottom: 40px;
}
@media screen and (max-width:768px){
	.newsAreaContentIn{
		margin-top: var(--sp-size-96);
		padding-bottom: var(--sp-size-48);
	}
}



/**
* Pager
**/
.articleNavLists{
	display: flex;
	justify-content: center;
}
.articleNavLists > li{
	padding: 0 12px;
}
.articleNavList__link{
	min-width: min(calc(48 / var(--vw-min) * 100vw), 48px);
    min-height: min(calc(48 / var(--vw-min) * 100vw), 48px);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (hover:hover) and (pointer: fine){
	.articleNavList__link{
		background: linear-gradient(var(--color-accent), var(--color-accent)) right bottom / 0 100% no-repeat;
		transition: background-size .4s, color .4s ease;
	}
	.articleNavList__link:hover{
		background-position: left bottom;
		background-size: 100% 100%;
		color: #000;
	}
}
.articleNavList__link.is-active{
	background-color: var(--color-accent);
	color: #000;
}
.articleNavList__link.is-active .comLinkBox__line:before{
	border: 1px solid #000;
}
@media screen and (max-width:768px){
	.articleNavLists > li{
		padding: 0 var(--sp-size-12);
	}
	.articleNavList__link{
		width: calc(72 / var(--vw-min) * 100vw);
		height: calc(72 / var(--vw-min) * 100vw);
		padding-left: calc(12 / var(--vw-min) * 100vw);
		padding-right: calc(12 / var(--vw-min) * 100vw);
	}
}



/*-----------------------------------------------
 * NEWS - ARTICLE
-------------------------------------------------*/
.newsAreaContent{
	position: relative;
	z-index: 2;
}
.newsArticle{
	width: 100%;
	position: relative;
	padding-bottom: 40px;
	background-color: #000;
	border: 1px solid rgba(255, 255, 255,0.4);
}
.newsArticleHeader{
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(40 / var(--vw-min) * 100vw), 40px) min(calc(24 / var(--vw-min) * 100vw), 24px) 0;
	border-bottom: 1px solid rgba(255, 255, 255,0.4);
}
.newsTitle{
	width: 100%;
	position: relative;
	padding-bottom: 32px;
}
.newsTitle__date{
	font-family: var(--font-en);
    color: #FFF;
    display: inline-block;
    background-color: #666666;
    width: min(calc(134 / var(--vw-min) * 100vw), 134px);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.newsTitle__title{
	font-size: 20px;
	font-weight: 700;
	line-height: 2;
	padding-top: 10px;
	position: relative;
	padding-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	color: var(--color-accent);
}
.newsTitle__title:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 8px;
	left: 0;
	width: 2px;
	background-color: #000;
}

@media screen and (max-width:768px){
	.newsArticle{
		padding-bottom: var(--sp-size-48);
	}
	.newsTitle{
		padding-bottom: calc(40 / var(--vw-min) * 100vw);
	}
	.newsTitle:before{
		background-size: var(--sp-size-32) var(--sp-size-32);
		max-height: calc(192 / var(--vw-min) * 100vw);
	}
	.newsTitle:after{
		left: 6.4%;
		right: 6.4%;
		height: var(--sp-size-2);
	}
	.newsTitle__date{
		font-size: calc(26 / var(--vw-min) * 100vw);
		padding-left:0;
		width: calc(220 / var(--vw-min) * 100vw);
		line-height: calc(32 / var(--vw-min) * 100vw);
	}
	.newsTitle__title{
		font-size: calc(32 / var(--vw-min) * 100vw);
		padding-top: calc(16 / var(--vw-min) * 100vw);
		padding-left: calc(24 / var(--vw-min) * 100vw);
	}
	.newsTitle__title:before{
		width: calc(4 / var(--vw-min) * 100vw);
		bottom: calc(16 / var(--vw-min) * 100vw);
	}
}


.newsArticleIn{
    padding-top: 32px;
    line-height: 2;
    word-break: break-all;
}

.newsArticleIn img{
	max-width: 100%;
	height: auto;
}
.newsArticleIn a{
	display: inline;
	word-break: break-all;
	position: relative;
	text-decoration: underline;
	transition: .3s ease;
	text-underline-offset: 6px;
	color: var(--color-accent);
}

.newsArticleIn a[target="_blank"]:after{
	content: '';
	display: inline-block;
	margin: 0 8px 0 6px;
	width: 12px;
	height: 12px;
	-webkit-mask: url(../img/common/icon_blank.svg) no-repeat center / contain;
	mask: url(../img/common/icon_blank.svg) no-repeat center / contain;
	background-color: var(--color-accent);
	transition: .3s ease;
}
.newsArticleIn a:hover{
	opacity: 70%;
	text-decoration: unset;
}

.newsArticleIn iframe {
	max-width: 100%;
	border: unset;
}

@media screen and (max-width: 767px){
	.newsArticleIn{
		padding-top: var(--sp-size-40);
	}
	.newsArticleIn a{
		text-underline-offset: var(--sp-size-8);
	}
	.newsArticleIn a[target="_blank"]:after{
		width: var(--sp-size-20);
		height: var(--sp-size-20);
		margin: 0 var(--sp-size-8);
	}
	.newsArticleIn iframe {
		width: 100%;
		height: calc(368 / var(--vw-min) * 100vw)
	}
}



/**
* LOADED ANIMATION
**/
.newsAreaContent{
	opacity: 0;
	transition: opacity .4s ease;
}
.is-ani .newsAreaContent{
	opacity: 1;
	transition-delay: .6s;
}


.backLink:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: min(calc(24 / var(--vw-min) * 100vw), 24px);
	top: 0;
	margin: auto;
    width: 24px;
    height: 14px;
    -webkit-mask: url(../img/common/arrow_r.svg) no-repeat right bottom / contain;
    mask: url(../img/common/arrow_r.svg) no-repeat right bottom / contain;
    background-color: #FFF;
	transition: all 0.4s ease;
	transform: rotate(-180deg);
}
@media screen and (hover:hover) and (pointer: fine){
	.comLinkBox__link:hover.backLink:after{
		background-color: #000;
	}
}
@media screen and (max-width:768px){
	.backLink:after {
		left: min(calc(24 / var(--vw-min) * 100vw), 24px);
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(28 / var(--vw-min) * 100vw);
	}
}