@charset "utf-8";


.sp-fixed{
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	/*background: url("/2024/_images/mvbg_sp.jpg") center bottom / cover no-repeat;*/
}


@media screen and (min-width: 960px){
	.wrapper{
	/*	background: url("/2024/_images/mvbg.jpg") center bottom / cover no-repeat;
		background-attachment: fixed;*/
	}
}

/* h1
============================================================================= */
.header-ttl_logo a{
	pointer-events: none
}

/* mainvis
============================================================================= */
.mv{
	position: relative;
	padding: 8px 0;
	background: linear-gradient(100deg, #1bccc6 0%,#f2d616 100%);
	overflow: hidden;
	
}
.mvInr{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1400px;
}
.mv_txtMusic{
	position: absolute;
	left: 0;
	bottom: 16px;
	z-index: 1;
	width: 350px;
}
.mv_date{
	position: absolute;
	right: 0;
	top: 16px;
	z-index: 1;
	width: 180px;
}
.mv_imgInstrument{
	position: absolute;
	left: 0;
	top: 16px;
	width: 80px;
	height: 63px;
	background: url("/2025/_images/mv_instrument.webp") center / 100% auto no-repeat;
}
.mv_imgArtist{
	position: absolute;
	right: 0;
	bottom: -48px;
	width: 180px;
	height: 110px;
	background: url("/2025/_images/mv_artist.webp") center / 100% auto no-repeat;
}
.mv_txt{
	margin: 8px 0;
	width: 100%;
	height: 80px;
	background: url("/2025/_images/mv_bgtxt.webp") 0 0 repeat-x;
	background-size: 2171px auto;
    animation: mvFlowingtxtAnimation 85s infinite linear 0.5s both;
}
.mv_musicNote{
	position: absolute;
	left: 0;
	bottom: 24px;
	z-index: 1;
	width: 100%;
	height: 60px;
	background: url("/2025/_images/mv_musicnote.webp") 0 0 repeat-x;
	background-size: 1628px auto;
    animation: mvFlowingNoteAnimation 120s infinite linear 0.5s both, mvVerticalAnimation 3s ease-in-out infinite alternate;;
}
@media print, screen and (min-width:960px) {
	.mv{
		padding: 8px 0;
	}
	.mv_txtMusic{
		bottom: 32px;
		width: 553px;
	}
	.mv_date{
		top: -80px;
		width: 332px;
	}
	.mv_imgInstrument{
		top: 50px;
		width: 213px;
		height: 169px;
	}
	.mv_imgArtist{
		right: -100px;
		bottom: -94px;
		width: 600px;
		height: 368px;
	}
	.mv_txt{
		height: 173px;
		background-size: 5022px auto;
		animation: mvFlowingtxtAnimation 50s infinite linear 0.5s both;
	}
	.mv_musicNote{
		height: 117px;
		background-size: 3175px auto;
		animation: mvFlowingNoteAnimation 80s infinite linear 0.5s both, mvVerticalAnimation 3s ease-in-out infinite alternate;;
	}
}

@keyframes mvFlowingtxtAnimation {
    0% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: -5022px;
    }
}
@keyframes mvFlowingNoteAnimation {
    0% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: -3175px;
    }
}
@keyframes mvVerticalAnimation {
    from {
		transform: translateY(0);
    }
    to {
		transform: translateY(-10px);
    }
}

/* MV PHOTO SLIDE
-----------------------------------------------------------*/
.mvphotoSlide{
	display: flex;
	padding: 4px 0;
	background-color: #058d99;
	overflow: hidden;
}
.mvphotoSlide_item{
	display: none;
	overflow: hidden;
	padding: 0 2px;
	width: 200px;
	height: 150px;
	border-radius: 8px;
}
.mvphotoSlide.flowingSlide .mvphotoSlide_item{
	display: block;
}

.mvphotoSlide_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media print, screen and (min-width:960px) {
	.mvphotoSlide{
		padding: 8px 0;
	}
	.mvphotoSlide_item{
		width: 300px;
		height: 225px;
		padding: 0 4px;
		border-radius: 32px;
	}
}

/* FLOWING SLIDE */
.flowingSlide{
	display:flex;
	width: 100%;
	overflow: hidden;
}
.flowingSlideWp {
	display: flex
}
.flowingSlideWp.movPlay {
	animation: 80s infinite linear both kvSliderAnimation
}
.flowingSlide.-type02 .flowingSlideWp.movPlay {
	animation: 80s infinite linear -3s both kvSliderAnimation
}
.flowingSlideItem {
	position: relative;
	margin: 0 8px;
	height: 100%
}
@media print, screen and (min-width:960px) {
	.flowingSlideWp.movPlay {
		animation: 80s infinite linear both kvSliderAnimation
	}
	.flowingSlide.-type02 .flowingSlideWp.movPlay {
		animation: 80s infinite linear -3s both kvSliderAnimation
	}
}
@keyframes kvSliderAnimation {
	from {
		transform: translateX(0)
	}
	to {
		transform: translateX(-100%)
	}
}


/* contents
============================================================================= */
.contents{
	background: #eef2f6;
}


/* news
============================================================================= */
.news{
	padding: 24px 0;
	background: #ffde00;
}
.newsTtl{
	position: relative;
	z-index: 0;
	text-align: center;
	font-size: 3.0rem;
	font-weight: 900;
}
.newsTtl::before{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
	content: attr(data-en);
	color: #fff;
	font-size: 8rem;
	opacity: .3;
}
.newsBd{
	flex: 1;
}
.newsList{
	margin-top: 16px;
}
.newsList_item{
	margin-top: 8px;
}
.newsList_itemBox{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 16px;
	height: 100%;
	min-height: 74px;
	color: #352f25!important;
	font-weight: 500;
	background-color: rgba(255, 255, 255, 0.8);
}
.newsList_itemBox dt{
	position: absolute;
	left: -8px;
	top: -4px;
	padding: 0 4px 4px;
	font-size: 1.6rem;
	font-weight: bold;
	background: url("/2025/_images/news_line.png") center bottom / 100% 15px no-repeat;
	transform:rotate(-8deg); 
}
.newsList_itemBox dd{
	text-align: center;
}
.newsList_itemBox dd span{
	display: inline-block;
}
a.newsList_itemBox, a.newsList_itemBox span{
	text-decoration: underline;
}
a.newsList_itemBox::after{
	position: absolute;
	right: 4px;
	bottom: 0;
	transform: translateY(-50%);
	content: "\F1DF";
	font-family:'Material Icons Round';
	font-weight: bold;
	line-height: 1;
}

.newsMore{
	margin-top: 24px;
	text-align: center;
}
.newsMore a{
	position: relative;
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
.newsMore a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 0%;
    height: 2px;
    margin: auto;
    background-color: #000;
    transition: width .4s cubic-bezier(0.54, 0.12, 0.11, 0.98);
}
.newsMore .m-ico{
	margin-left: 8px;
}

@media screen and (min-width: 960px){
	.news{
		padding: 40px 0;
	}
	.newsWp{
		display: flex;
		align-items: center;
	}
	.newsTtl{
		padding-bottom: 42px;
		width: 300px;
		font-size: 4.0rem;
	}
	.newsTtl::before{
		top: calc(50% - 26px);
		font-size: 10rem;
	}
	.newsList{
		display: flex;
		margin: 0 0 0 -24px;
	}
	.newsList_item{
		margin: 0 0 0 24px;
		width: calc(100% / 3 - 24px);
	}
	.newsList_itemBox{
		padding: 32px 16px;
	}
	.newsList_itemBox dt{
		left: -16px;
		top: -8px;
		font-size: 2.0rem;
	}
	.newsMore{
		margin-top: 16px;
		text-align: right;
	}
	.newsMore a:hover::after {
		width: 100%;
	}
}

/* bn
============================================================================= */
.sect.-topBn{
	padding-bottom: 32px;
	background: #eef2f6;
}
.topBnList{
	display: flex;
	flex-wrap: wrap;
	margin: -16px 0 0 -8px;
}
.topBnList_item{
	margin: 16px 0 0 8px;
	width: calc(100% / 2 - 8px);
}
.topBnList_item a{
	display: flex;
	flex-direction: column;
	padding: 8px;
	height: 100%;
	color: #000;
	text-decoration: none;
	border-radius: 8px;
	background: #fff;
}
.sect.-important .topBnList_item a{
	border-radius: 0;
}
.topBnList_img{
	overflow: hidden;
	order: -1;
	border-radius: 8px;
}
.topBnList_img img{
	transition: transform 0.3s;
}
.topBnList_ttl{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4px;
	font-size: 1.2rem;
	line-height: 1.3;
}
.topBnList_ttl:before{
	content: attr(data-en);
	font-size: 1.8rem;
	font-weight: bold;
}


@media screen and (max-width: 959px){
	/*.topBnList_item:last-child{
		margin-top: 30px;
		width: calc(100% - 10px);
	}*/
}
@media screen and (min-width: 960px){
	.sect.-topBn{
		padding: 80px 0;
	}
	.topBnList{
		margin: -32px 0 0 -32px;
	}
	.topBnList_item{
		margin: 32px 0 0 32px;
		width: calc(100% / 3 - 32px);
	}
	.topBnList_item a{
		display: flex;
		flex-direction: column;
		padding: 24px;
		color: #000;
		text-decoration: none;
		border-radius: 16px;
		background: #fff;
	}
	.topBnList_item a:hover .topBnList_img img{
		transform: scale(1.1);
	}
	.topBnList_img{
		border-radius: 16px;
	}
	.topBnList_ttl{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 8px;
		font-size: 1.4rem;
	}
	.topBnList_ttl:before{
		content: attr(data-en);
		font-size: 3.0rem;
		font-weight: bold;
	}
}


/* important
============================================================================= */
.sect.-important{
	margin-top: 32px;
	padding-top: 0;
	background: #eef2f6;
}
.sect.-important .sect-ttl{
	padding-bottom: 20px;
	border-bottom: solid 2px #000;
}
.importantList{
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 0 -10px;
}
.importantList_item{
	margin: 10px 0 0 10px;
	width: calc(100% / 3 - 10px);
}

@media screen and (min-width: 960px){
	.sect.-important{
		margin-top: 80px;
	}
	.importantList{
		margin: 30px 0 0 -30px;
	}
	.importantList_item{
		margin: 30px 0 0 30px;
		width: calc(100% / 4 - 30px);
	}
	
}

.sect.-important{
	background: #eef2f6;
}
.sect.-important .ttl{
	align-items: center;
}
.importantList{
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -8px;
}
.importantList_item{
	margin: 16px 0 0 8px;
	width: calc(100% / 2 - 8px);
}
.importantList_item a{
	display: flex;
	flex-direction: column;
	padding: 8px;
	color: #000;
	text-decoration: none;
	border-radius: 8px;
	background: #fff;
}
.sect.-important .importantList_item a{
	border-radius: 0;
}
.importantList_img{
	overflow: hidden;
	order: -1;
	border-radius: 8px;
}
.importantList_img img{
	transition: transform 0.3s;
}
.importantList_ttl{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4px;
	font-size: 1.2rem;
	line-height: 1.3;
}
.importantList_ttl:before{
	content: attr(data-en);
	font-size: 1.8rem;
	font-weight: bold;
}


@media screen and (min-width: 960px){
	.sect.-important{
		padding: 0 0 80px;
	}
	.importantList{
		justify-content: center;
		margin: 24px 0 0 -32px;
	}
	.importantList_item{
		margin: 32px 0 0 32px;
		width: calc(100% / 3 - 32px);
	}
	.importantList_item a{
		display: flex;
		flex-direction: column;
		padding: 24px;
		color: #000;
		text-decoration: none;
		border-radius: 16px;
		background: #fff;
	}
	.importantList_item a:hover .importantList_img img{
		transform: scale(1.1);
	}
	.importantList_img{
		border-radius: 16px;
	}
	.importantList_ttl{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 8px;
		font-size: 1.4rem;
	}
	.importantList_ttl:before{
		content: attr(data-en);
		font-size: 3.0rem;
		font-weight: bold;
	}
}


/* supporters
============================================================================= */
.sect.-supporters{
	background: #fff;
}
.supportersTtl{
	text-align: center;
	font-size: 2.1rem;
	font-weight: bold;
}

.supporterswp{
}
.supporterswp dt{
	margin-top: 20px;
	font-size: 1.8rem;
	font-weight: bold;
}
@media screen and (max-width: 959px){
	.supporterswp dt:not(:first-of-type){
		padding-top: 20px;
		border-top: solid 1px #eee;
	}
}
.supporterswp dd{
	margin-top: -8px;
}
.supprotersCas{
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
}
.supprotersCas_item{
	margin: 16px 0 0 8px;
	width: calc(100% / 2 - 8px);
}

.supprotersCas_box{
	position: relative;
	display: flex;
	flex-direction: column;
}
a.supprotersCas_box{
	color: #000;
	text-decoration: none;
}
.supprotersCas_img{
	order: -1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	border: solid 1px #eee;
}
.supprotersCas_img:before{
	content: "";
	padding-top: calc(100 / 250 * 100%);
}
.supprotersCas_img img{
	position: relative;
	z-index: 1;
}
.supprotersCas_ttl{
	margin-top: 4px;
}
.supprotersCas_txt{
	margin-top: 10px;
}

.supprotersCas_box .m-ico{
	margin-left: 4px;
	color: #ababab;
	font-size: 1.4rem;
}
.supprotersCas_att{
	margin-top: 20px;
	font-size: 1.4rem;
	text-align: right;
}
.supportersMore{
	margin-top: 16px;
	text-align: center;
}
.supportersMore a{
	color: #000;
	text-decoration: none;
}


@media screen and (min-width: 960px){
	.supporterswp{
		display: flex;
		flex-wrap: wrap;
		margin: 0;
	}
	.supporterswp dt{
		margin-top: 30px;
		width: 150px;
	}
	.supporterswp dd{
		margin-top: 30px;
		padding-left: 50px;
		width: calc(100% - 150px);
		border-left: solid 1px #ccc;
	}
	
	.supporters-maintxt{
		font-size: 2.5rem;
		text-align: center;
	}
	.supportersTtl{
		font-size: 3.0rem;
	}

	.supprotersCas{
		margin: -32px 0 0 -32px;
	}
	.supprotersCas .supprotersCas_item{
		margin: 32px 0 0 32px;
		width: calc(100% / 5 - 32px);
	}
	.supprotersCas_ttl{
		font-size: 1.6rem;
	}
	.supprotersCas_att{
		margin-top: 30px;
	}	
	.supportersList{
		margin-left: -30px;
	}
	.supportersList_item{
		margin-left: 30px;
	}
	.supportersList.-special .supportersList_item{
		max-width: 300px;
	}
	.supportersList.-semi .supportersList_item{
		width: 100%;
		max-width: 159px;
	}
	.supportersMore{
		margin-top: 56px;
	}
}

