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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--primary-color: #FF2C8A;
	--accent-color: #DAAB71;
	--sub-color: #96A0F0;
	--link-color: #65DAC7;
	--red-color: #EE0000;
	--bg-color: #FFFFFF;
	--bg2-color: rgb(255 255 255 / 0.5);
}
body::before {
	content: "";
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg_sp.jpg);
	background-size: cover;
	background-position: center;
}
.main__wrap{
	padding-top: 66px;
	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;}
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: 92%;
	margin: 0 auto;
	max-width: 700px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--link-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);}
.note__list--box{
	background: var(--bg2-color);
	padding: 14px;
}

.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;}

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

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

.pdbM{padding-bottom: 16px;}

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

/* PC用設定 */
@media screen and (min-width:751px) { 
	body::before {
		background: url(../img/bg_pc.jpg);
		background-size: cover;
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}
	.note__list--box{
		padding: 24px;
	}

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

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

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

	.pdbM{padding-bottom: 24px;}

}

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


/* ブラー*/
.js__blurAnime{
	opacity: 0; /* 最初は非表示 */
}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
	opacity: 0;
	}

	to {
		filter: blur(0);
	opacity: 1;
	}
}

.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;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: var(--sub-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-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%);}
.acc__body{
	margin-top: 16px;
	/* background-color: #fff; */
	/* padding: 12px; */
}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block{
	margin-bottom: 16px;
}
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
		background: linear-gradient(90deg, #07AD92, #63D9C6);
		padding: 12px;
		border-radius: 20px;
		max-width: 600px;
		margin: 0 auto 8px;
	}
	.voice-btn__pc{
		background: linear-gradient(90deg, #07AD92, #63D9C6);
		border: 2px solid #fff;
		padding: 20px;
		border-radius: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		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) { 
	.mv__block h1{
		max-width: 1000px;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	padding: 32px 0;
}
.intro__lead{
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	margin-bottom: 16px;
}
.fc-accent{
	color: var(--primary-color);
}
.intro__lead .txt01{
	font-size: 1.15em;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap {
    padding: 64px 0;
}
	.intro__lead{
		font-size: 18px;
		margin-bottom: 24px;
		line-height: 1.8;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	background: rgb(255 255 255 / 0.8);
	padding: 24px 0;
}
.menu__wrap h2{
	max-width: 350px;
	margin: 0 auto 16px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
}
.menu__list--item{
	width: calc( ( 100% - 18px ) / 2 );
	border-radius: 8px;
	box-shadow: 0 1rem 1rem -1rem rgb(0 0 0 / 30%);
}
.menu__list--item img{
	border-radius: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap{
		padding: 40px 0;
	}
	.menu__wrap h2{
		margin: 0 auto 24px;
	}
	.menu__list{
		gap: 30px;
	}
	.menu__list--item{
		width: 180px;
		max-width: calc( ( 100% - 60px ) / 3 );
		transition: all .5s;
	}
	.menu__list--item:hover{
		box-shadow: none;
		transform: translateY(3px);
	}
}

/* ------------------------------------------------------------
#Movie
------------------------------------------------------------ */
.sec__wrap{
	padding: 16px 0 32px;
}
.sec__head{
	margin: 0 auto 24px;
	max-width: 520px;
}
.sec__lead{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 24px;
	text-align: center;
}
.movie-cont__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.movie-cont__list--item{
	border: 2px solid var(--accent-color);
	background: rgb(255 255 255 / 0.75);
	padding: 14px;
	border-radius: 8px;
}
.movie-cont__head{
	position: relative;
	margin-bottom: 16px;
}
.cont__date{
	background-color: var(--accent-color);
	color: #fff;
	font-weight: bold;
	border: 3px solid #EED9BF;
	text-align: center;
	padding: 2px;
	margin-bottom: 8px;
}
.cont__date .fz-larger{
	font-size: 1.3em;
}
.movie-cont__head h3{
	color: var(--primary-color);
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.movie-cont__icon{
	width: 64px;
	position: absolute;
	top: -14px;
	left: -12px;
}
.img_thumb{
	max-width: 420px;
	margin: 0 auto 8px;
}
.talk-group__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.talk-group__list--item h4{
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding: 2px;
	background: linear-gradient(90deg, #FF2C8A, #F5BE42) ;
	margin-bottom: 12px;
}

.cast__list{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.cast__list--item{
	width: calc( ( 100% - 20px ) / 3 );
}
.cast__name{
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 4px;
}
.cast__name span{
	display: block;
	font-size: 10px;
	font-weight: normal;
}
.howto{
	margin-bottom: 24px;
}
.howto .acc__btn{
	border-radius: 0;
	width: 100%;
	text-align: center;
}
.howto .acc__body{
	background-color: var(--bg-color);
	margin-top: 0;
	padding: 14px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.step__list--item{
	display: flex;
	gap: 12px;
}
.step__label span{
	color: var(--sub-color);
	background-color: #E4E7FB;
	border-radius: 4px;
	padding: 3px 9px;
	font-weight: bold;
	display: block;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{padding: 32px 0 40px;}
	.sec__lead{
		font-size: 18px;
		line-height: 1.8;
		margin-bottom: 32px;
	}
	.movie-cont__list{
		gap: 32px;
		margin-bottom: 32px;
	}
	.movie-cont__list--item{
		border: 3px solid var(--accent-color);
		padding: 24px;
		border-radius: 16px;
	}
	.movie-cont__list--item .txt01{
		font-size: 16px;
	}
	.movie-cont__head{margin-bottom: 24px;}
	.cont__date{
		padding: 4px;
		margin-bottom: 16px;
		font-size: 16px;
	}
	.movie-cont__head h3{
		font-size: 22px;
	}
	.movie-cont__icon{
		width: 90px;
		top: -18px;
    left: -20px;
	}
	.img_thumb{
		margin: 0 auto 16px;
	}
	.talk-group__list{
		gap: 32px;
	}
	.talk-group__list--item h4{
		font-size: 16px;
		padding: 4px;
		margin-bottom: 16px;
	}
	.cast__list{
		gap: 16px;
	}
	.cast__list--item{
		width: calc( ( 100% - 64px ) / 5 );
	}
	.cast__name{
		font-size: 14px;
	}
	.cast__name span{
		font-size: 12px;
	}
	.howto{
		margin-bottom: 32px;
	}
	.howto .acc__btn {
    font-size: 16px;
}
	.howto .acc__body{
		padding: 20px;
	}
	.step__list{
		gap: 16px;
	}
	.step__list--item{
		gap: 16px;
	}
	.step__label span{
		padding: 3px 16px;
		font-size: 16px;
	}
	.step__txt{
		font-size: 16px;
	}
}

/* ------------------------------------------------------------
#File
------------------------------------------------------------ */
#File .cont__date{
	margin-bottom: 24px;
}
.sec__lead .fz-smaller{
	font-size: 12px;
}
.img__box{
	max-width: 500px;
	margin: 0 auto 24px;
}
.location__box--outer{
	background-color: #fff;
	padding: 8px;
	margin-bottom: 24px;
}
.location__box{
	border: 1px solid var(--accent-color);
	padding: 14px 14px 24px;
	background-image: url(../img/frame-obj-tl.svg),url(../img/frame-obj-tr.svg),url(../img/frame-obj-bl.svg),url(../img/frame-obj-br.svg);
	background-repeat: no-repeat,no-repeat,no-repeat,no-repeat;
	background-position: top 4px left 4px,top 4px right 4px,bottom 4px left 4px,bottom 4px right 4px;
}
.location__head{
	text-align: center;
	font-weight: bold;
	color: var(--accent-color);
	margin-bottom: 16px;
}
.location__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.location__list li{
	display: flex;
	flex-direction: column;
	gap: 4px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#File .cont__date {
		width: fit-content;
		margin: 0 auto 24px;
    padding: 4px 60px;
}
	.sec__lead .fz-smaller{
		font-size: 14px;
	}
	.location__box--outer{
		padding: 16px;
		margin-bottom: 32px;
	}
	.location__box{
		border: 1px solid var(--accent-color);
		padding: 24px;
		background-position: top 8px left 8px,top 8px right 8px,bottom 8px left 8px,bottom 8px right 8px;
		background-size: 48px;
	}
	.location__head{
		font-size: 16px;
		margin-bottom: 16px;
	}
	.location__list{
		gap: 24px;
	}
	.location__list li{
		text-align: center;
		font-size: 16px;
		gap: 8px;
	}
	
}

/* ------------------------------------------------------------
#Poster
------------------------------------------------------------ */
#Poster .cont__date{
	margin-bottom: 24px;
}
.cont__date--label{
	display: block;
	background-color: #fff;
	color: var(--accent-color);
	font-weight: bold;
	font-size: 12px;
	border-radius: 12px;
	width: fit-content;
	padding: 2px 30px;
	margin: 4px auto 2px;
}
.img__box{
	position: relative;
}
.img_poster{
	width: 80%;
	margin: 0 auto;
}
.number-wp{
	background-color: #fff;
	border: 3px solid var(--primary-color);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	color: var(--primary-color);
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	bottom: 32px;
  right: 10px;
}
.number-wp span{
	text-align: center;
}
.number-wp .fz-larger{
	font-size: 1.5em;
	line-height: 1;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	#Poster .cont__date {
		width: fit-content;
		margin: 0 auto 24px;
    padding: 4px 60px;
}
.cont__date--label{
	font-size: 14px;
	border-radius: 20px;
	padding: 2px 48px;
	margin: 4px auto 2px;
}
.number-wp {
	width: 96px;
	height: 96px;
	bottom: 32px;
	right: 10px;
	font-size: 16px;
}
.img_poster {
	width: 100%;
}
}

/* ------------------------------------------------------------
bottom-sec__wrap
------------------------------------------------------------ */
.bottom-sec__wrap{
	background-image: url(../img/bg_sp-bottom.jpg);
	background-size: cover;
	padding: 40px;
}
.official-link__btn{
	display: block;
	width: 93%;
	max-width: 360px;
	margin: 0 auto;
	transition: all .5s;
}
.bottom-sec__wrap .txt-note{
	color: #fff;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.bottom-sec__wrap{
		background-image: url(../img/bg_pc-bottom.jpg);
		padding: 64px;
	}
	.official-link__btn:hover{
		transform: scale(.95);
	}
}



/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid var(--sub-color);
	color: var(--sub-color);
	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 var(--sub-color);
  border-right: 2px solid var(--sub-color);
  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: var(--sub-color);
		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-weight: bold;
	text-align: center;
	padding: 6px;
	font-size: 20px;
	border-radius: 40px;
}
.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%;
	} */
}



