@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #ffffff;
	--sub-text-color:#000000;
	--primary-color: #44647A;
	--accent-color: #D41D04;
	--bg-color: #000;
	--bg02-color: rgb(168 168 168 / 0.4);
	--border-color: #B4B4B4;
	--font-en: "Jost", serif;
	--red-color: #ee0000;
}

/* 背景固定 */
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/pc-bg.jpg) no-repeat center center;
	background-size: cover;
}

.main__wrap{
	padding-top: 66px;
	/* background-color: #fff; */
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
}
.main__wrap *{box-sizing: border-box;}
/* .pc__bg{
	background-color: #B3B3B3;
} */
.content__inner{
	background: url(../img/white-texture.png),var(--bg-color);
	background-repeat: repeat,no-repeat;
	background-size: 51px,auto;
	max-width: 750px;
	margin: 0 auto;
}
img{
	display: block;
	width: 100%;
	height: auto;
}
figure {
	margin: 0 auto;
  width: 100%;
}
figcaption .caption {
	margin-left: auto;
  margin-right: 0;
  width: fit-content;
	font-size: 12px;
}

a:hover img {opacity: 1;}

.container{
	width: 84%;
	margin: 0 auto;
	max-width: 560px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--accent-color);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 11px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}

.note__list li.fc-red{color: var(--red-color);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}

.mgbS{margin-bottom: 8px;}
.mgbM{margin-bottom: 16px;}
.mgbL{margin-bottom: 24px;}
.mgbLL{margin-bottom: 32px;}

.mgtS{margin-top: 8px;}
.mgtM{margin-top: 16px;}
.mgtL{margin-top: 24px;}

.pdtS{padding-top: 8px;}
.pdtM{padding-top: 16px;}
.pdtL{padding-top: 24px;}

.pdbS{padding-bottom: 8px;}
.pdbM{padding-bottom: 16px;}
.pdbL{padding-bottom: 24px;}

.credit{
	font-size: 12px;
	padding-top: 8px;
	text-align: center;
}

.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}

	.pc_center {text-align: center;}

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

	.mgtM{margin-top: 24px;}
	.mgtL{margin-top: 32px;}

	.pdtM{padding-top: 24px;}
	.pdtL{padding-top: 32px;}

	.pdbM{padding-bottom: 24px;}
	.pdbL{padding-bottom: 32px;}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードアップ(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* XXpx上に移動する */
}


/* スライド（左から右） */
.js__slide{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide.is-inview{
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_left_to_right {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
	color: var(--text-color);
	padding-top: 12px;
}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
	border:1px solid var(--text-color);
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
	background-color: #fff;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: var(--sub-text-color);
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}

/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
		margin-bottom: 8px;
	}
	.voice-btn__pc{
		background-image: url(../img/pc-VTbg.jpg);
		background-size: cover;
		padding: 20px;
		box-shadow: 5px 5px 0 0 var(--accent-color);
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: var(--sub-text-color);
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	
}


/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	padding: 48px 0;
	background: url(../img/obj_line-wht.png),url(../img/obj_line-wht.png);
	background-repeat: no-repeat;
	background-size: 230px;
	background-position: top -235px right -180px,bottom -240px left -200px;
}
	
.intro__lead{
	text-align: center;
	line-height: 1.8;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap{
	background-position: top -165px right -120px, bottom -175px left -150px;
}
	
	.intro__lead{
	font-size: 16px;
	line-height: 2;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding-bottom: 48px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 95% - 10px ) / 2 );
	max-width: 200px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__list{gap: 20px;}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */

/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
#Music
------------------------------------------------------------ */
#Music.sec__wrap{
	position: relative;
}
#Music.sec__wrap::before,#Music.sec__wrap::after{
 content: "";
 display: block;
 background-image:url(../img/obj_line-wht.png) ;
 background-repeat: no-repeat;
 background-size: 180px;
 position: absolute;
}
#Music.sec__wrap::before{
 width: 64px;
 height: 79px;
 background-position: left 0 bottom 0;
 top: 88px;
 right: 0px;
}
#Music.sec__wrap::after{
 width: 26px;
 height: 32px;
 background-position: right 0 top 0;
 top: 239px;
 left: 0px;
}
.sec__wrap{
	padding: 40px 0;
}
.bg01{
	background: url(../img/mooning.png),#1f1f1f;
	background-repeat: repeat,no-repeat;
	background-size: 200px,auto;
}
.sec__date{
	color: var(--accent-color);
	border-top: 1px solid var(--accent-color);
	border-bottom: 1px solid var(--accent-color);
	padding: 8px 0;
	letter-spacing: 0.05em;
	text-align: center;
	font-weight: bold;
	margin-bottom: 24px;
}
.sec__date span{
	font-size: 1.3em;
	font-family: var(--font-en);
	font-weight: 700;
}

.sec__head--group{
	margin-bottom: 32px;
}

.sec__head{
	margin-bottom: 12px;
	max-width: 450px;
	position: relative;
}
.sec__head img{
	position: relative;
	z-index: 1;
}
.sec__head::before{
	content: "";
	display: block;
	width: 111px;
	height: 87px;
	background-image: url(../img/obj_red.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top:8px;
	left: -10px;
	z-index: 0;
}
.music__list{
	background: var(--bg02-color);
	padding: 16px;
	margin-bottom: 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.music__list li:not(:last-child){
	padding-bottom: 16px;
	border-bottom: 1px var(--border-color) dashed;
}
.music__list--direction{
	font-weight: 500;
	margin-bottom: 8px;
}
.music__list--name{
	font-family: var(--font-en);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	 
	.sec__wrap{padding: 64px 0;}
	.sec__date {
    font-size: 16px;
    margin-bottom: 32px;
}
#Music.sec__wrap::before{
 width: 120px;
  height: 148px;
  top: 111px;
}
#Music.sec__wrap::after{
 width: 75px;
 height: 95px;
  top: 280px;
}
.sec__head::before{
	width: 135px;
  height: 106px;
  top: 28px;
  left: -19px;
}
.music__list--direction{
	font-size: 16px;
}
.music__list--name{
	font-size: 20px;
}
}

/* ------------------------------------------------------------
#Novelty
------------------------------------------------------------ */
#Novelty.sec__wrap{
	position: relative;
}
#Novelty.sec__wrap::before,#Novelty.sec__wrap::after{
 content: "";
 display: block;
 background-image:url(../img/obj_line-wht.png) ;
 background-repeat: no-repeat;
 background-size: 180px;
 position: absolute;
}
#Novelty.sec__wrap::before{
 width: 54px;
 height: 65px;
 background-position: left 0 bottom 0;
 top: 0px;
 right: 30px;
}
#Novelty.sec__wrap::after{
 width: 28px;
 height: 36px;
 background-position: right 0 top 0;
 top: 185px;
 left: 0px;
}
#Novelty .sec__head::before{
	background-image: url(../img/obj_blue.png);
	top:55px;
}
.img-novelty{
	width: 68%;
	margin: 0 auto;
}
.info__box{
	border: 1px solid var(--primary-color);
	padding: 16px;
	margin-bottom: 16px;
}
.info__head{
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.step__number{
	background-color: var(--primary-color);
	text-align: center;
	font-family: var(--font-en);
	font-weight: 700;
	margin-bottom: 8px;
}
.info__lead{
	font-size: 15px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 16px;
}
.info-detail{
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}
.info-link__btn{
	color: var(--text-color);
	font-size: 12px;
	border: 1px solid var(--text-color);
	padding: 16px 24px;
	display: block;
	width: fit-content;
	margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	#Novelty.sec__wrap::before{
 				width: 115px;
        height: 140px;
}
#Novelty.sec__wrap::after{
 	width: 70px;
  height: 87px;
  top: 270px;
} 
#Novelty .sec__head::before {
    top: 95px;
}
	.info__box{
	padding: 32px;
	margin-bottom: 32px;
}
.info__head {font-size: 18px;}
.step__list {gap: 24px;}
.step__number {
    font-size: 18px;
    margin-bottom: 12px;
}
.step__txt{font-size: 16px;}
.info__lead {
    font-size: 17px;
    margin-bottom: 24px;
}
.info-detail {
    gap: 16px;
    margin-bottom: 24px;
}
.info-detail .txt01{
	font-size: 16px;
}
.info-link__btn {
    font-size: 16px;
		transition: all .5s;
		font-weight: bold;
}
.info-link__btn:hover{
	background-color: var(--text-color);
	color: var(--sub-text-color);
}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
#Banner.sec__wrap{
	background: url(../img/bg-pattern.png),var(--primary-color);
	background-repeat: repeat,no-repeat;
	background-size: 51px,auto;
}
.official-link__btn{
	background-color: #000;
	width: 250px;
	display: block;
	margin: 0 auto;
	text-align: center;
	color: var(--text-color);
	padding: 10px;
	font-weight: 700;
	font-size: 12px;
	box-shadow: 5px 5px 0 0 #FFF;
}
.official-link__btn span{
	font-family: var(--font-en);
	font-size: 1.2em;
	line-height: 1.2;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.official-link__btn{
	width: fit-content;
	padding: 16px 32px;
	font-size: 15px;
	transition: all .5s;
}
.official-link__btn:hover{
	background-color: var(--accent-color);
}
}


/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}


/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: .3s;
	width: 56px;
  z-index: 99;
  opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	padding: 6px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
  justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}



