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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--primary-color: #30B7AA;
	--red-color: #FD5050;
	--accent-color: #F49F1F;
	--bg-grd:linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	--grd1-color:linear-gradient(90deg, #FA78D0 0%, #8CB8EB 100%);
	--grd2-color:linear-gradient(0deg, #73CDE8 0%, #46BDB3 100%);
}
.main__wrap{
	padding-top: 66px;
	/* background-color: #fff; */
	color: var(--text-color);
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 16px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
}
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: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: #73839E;
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
	color: #B3B3B3;
}

.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;}
.pdtS{padding-top: 8px;}
.pdbM{padding-bottom: 16px;}

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

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.txt-note{font-size: 14px;}
	.note__list li{font-size: 14px;}
	.pc_center {text-align: center;}

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

}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    background-color: #30B7AA;
    position: relative;
    padding: 6px 56px 6px 28px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    margin-top: 4px;
}
.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: #30B7AA;
	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; */
	color: #000;
	padding: 0px 20px;
	font-size: 14px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

/* 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__pc{
		background-color: #B3B3B3;
		border: 3px solid #000000;
		padding: 16px;
		margin-bottom: 8px;
	}
	.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;
	}
}

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

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

.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
	animation-name: flipLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: left center;
	opacity: 0;
	transition-delay: 0.8s;
	animation-delay: 0.3s;
	
}
@keyframes flipLeftAnime{
	from {
	 transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}

/* ズームイン*/
.zoomInAnime{
	animation-name: zoomInAnime;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes zoomInAnime{
	from {
	 transform: scale(0.7, 0.7);
	opacity: 0;
	}

	to {
	transform: scale(1, 1);
	opacity: 1;
	}
}


/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block{
	background: url(../img/bg-obj.png) no-repeat top center;
	background-size: 150%;
	padding: 0 0 30px;
}
.mv__sub{
	background: var(--grd1-color);
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	padding: 4px;
}
.mv__block h1{
	width: 80%;
	max-width: 560px;
	margin: 12px auto;
}
.mv__date{
	width: 85%;
	max-width: 360px;
	margin: 0 auto;
}
.mv__date dt{
	background-color: var(--accent-color);
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	padding: 2px;
	border-radius: 8px 8px 0 0;
}
.mv__date dd{
	background-color: #fff;
	border-radius: 0 0 8px 8px;
	padding: 6px 28px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background: url(../img/bg-obj.png) no-repeat center center;
		background-size: contain;
		padding: 0 0 50px;
	}
	.mv__sub{
		font-size: 20px;
		padding: 8px;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.sec__wrap--bg{
	background-color: #fff;
	border-radius: 40px 40px 0 0;
	padding: 32px 0 12px;
}
.sec__wrap--bottom{
	background: var(--bg-grd);
	height: 60px;
}
.intro__lead{
	text-align: center;
	font-weight: bold;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{
		max-width: 800px;
		margin: 0 auto;
	}
	.sec__wrap--bottom{
		height: 100px;
	}
	.intro__lead{
		line-height: 1.7;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding-bottom: 56px;
}
.menu__head{
	width: 165px;
	margin: 0 auto 8px;
}
.menu__list{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.menu__list li{
	background-color: #fff;
	border-radius: 78px;
	box-shadow: 0px 4px 5px #F7BCD8;
	padding: 1px;
	position: relative;
}
.menu__list li::after{
	display: block;
	content: "";
	width: 118px;
	height: 36px;
	background-image: url(../img/icon-cs.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -16px;
	right: -6px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__list{
		flex-direction: row;
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.menu__list li{
		width: 320px;
	}
}
/* ------------------------------------------------------------
#movie
------------------------------------------------------------ */
.movie__wrap{
	background: var(--grd2-color);
	border-radius: 40px 40px 0 0;
	padding: 32px 0;
}
#movie .container{
	width: 84.5%;
	margin: 0 auto;
}
.bg-white{
	background-color: #fff;
	padding: 12px 12px 32px;
}
.movie-txt01{
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 16px;
}
.img-movie-kv{
	width: 83%;
	max-width: 320px;
	margin: 0 auto;
}
.movie-link__head{
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}
.movie-link__btn{
	display: block;
	background-color: #fff;
	border-radius: 12px;
	width: 200px;
	padding: 3px 16px;
	margin: 0 auto;
	box-sizing: border-box;
}
.movie-link .txt-note{
	text-align: center;
	color: #fff;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.movie__wrap{
		max-width: 800px;
		margin: 0 auto;
		padding: 48px 0;
	}
	#movie h2{
		max-width: 360px;
		margin: 0 auto 16px;
	}
	.bg-white{
		padding: 40px;
	}
	.movie-link__btn {
    width: 250px;
    padding: 6px 32px;
		transition: all .5s;
}
.movie-link__btn:hover{
	box-shadow: 0px 5px 10px #1C96B4;
}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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;}
.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: 90%;
	height: 70%;
	display: flex;
	align-items: center;
  justify-content: center;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}



