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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #484231;
	--primary-color: #8E413B;
	--accent-color: #DB618F;
	--secondary-color: #D59766;
	--border-color: #D3D3D3;
	--sub-color: #8E413B;
	--link-color: #65DAC7;
	--red-color: #D50215;
	--bg-color: #F4F1EB;
	--bg2-color: rgb(255 255 255 / 0.5);
	--font-cal: "Calistoga";
	--btn-base-color: var(--text-color); /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */

}
body::before {
	content: "";
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.webp) #F4F1EB;
	background-size: 1600px;
	background-position: left top;
}
.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;
	-webkit-font-smoothing: antialiased;

}
.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(--accent-color);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.txt-note.fz-s{font-size: 10px;}
.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;
}
.note__list--box__head {
	text-align: center;
	font-weight: 500;
}
.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}


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

/* PC用設定 */
@media screen and (min-width:751px) { 
	body::before {
		background-size: cover;
		background-position: center;
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}
	.note__list--box{
		padding: 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%);
	}
}
.js__listFadeUp>li {
	opacity: 0;
	transform: translateY(5px);
}
.js__listFadeUp.is-inview>li {
	animation-name: listFadeUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFadeUp li:nth-child(1) {animation-delay: 0s;}
.js__listFadeUp li:nth-child(2) {animation-delay: .2s;}
.js__listFadeUp li:nth-child(3) {animation-delay: .4s;}
.js__listFadeUp li:nth-child(4) {animation-delay: .6s;}
.js__listFadeUp li:nth-child(5) {animation-delay: .8s;}
.js__listFadeUp li:nth-child(6) {animation-delay: 1s;}

@keyframes listFadeUp {
	from {
	opacity: 0;
	transform: translateY(5px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__block01 .acc__body {
	margin-top: 16px;
	color: var(--text-color);
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--accent-color);
	padding: 6px 20px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.acc__block01 .acc__btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	border-radius: 20px;
}
.acc__btn_text {
	font-weight: bold;
	color: var(--btn-text-color);
}
.acc__btn_plus {
	background-color: var(--btn-text-color);
	height: 16px;
	width: 16px;
	border-radius: 100%;
	position: relative;
}
.acc__block02 .acc__btn_plus {
	position: absolute;
	right: 8px;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
	content: "";
	background-color: var(--btn-base-color);
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__block02 .acc__btn_plus::before,
.acc__block02 .acc__btn_plus::after {
	background-color: var(--accent-color);
}

.acc__block03 .acc__btn_plus::before,
.acc__block03 .acc__btn_plus::after {
	background-color: #5E5685;
}
.acc__block03 .acc__body {
	background-color: none;
}
.acc__btn_plus::after {	transform: translate(-50%,-50%);}
.acc__btn_plus::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open .acc__btn_plus::before {transform: translate(-50%,-50%);}

.acc__block03 .acc__btn {
	background-color: #5E5685;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.acc__block03 .acc__btn_text {
	font-size: 16px;
}
.acc__block03 {
	max-width: 550px;
	margin: 0 auto;
}
}


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

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
	background: url(../img/bg-pattern01.png) center top / 57px repeat #8E413B;
		padding: 12px;
		border-radius: 20px;
		max-width: 600px;
		margin: 0 auto 8px;
	}
	.voice-btn__pc{
		border-radius: 16px;
		border: 1px solid #FFF;
		padding: 20px;
	}
	.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__txt .txt02{
			font-weight: 500;
		}
	.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;
	line-height: 1.7;
}
.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;
		line-height: 1.8;
	}
}

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

.menu__box  {
	background: url(../img/bg-pattern01.png) center top / 57px repeat #8E413B;
	border-radius: 20px;
	padding: 40px 15px;
	max-width: 700px;
	margin: 0 auto;
}
.menu__wrap h2{
	max-width: 350px;
	margin: 0 auto 10px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
}
.menu__list--item{
	width: calc( ( 100% - 18px ) / 2 );
	max-width: 176px;
	box-shadow: 0 1rem 1rem -1rem rgb(0 0 0 / 30%);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap h2{
		margin: 0 auto 16px;
	}
	.menu__list{
		gap: 20px;
	}
	.menu__list--item{
		width: 176px;
		max-width: calc( ( 100% - 60px ) / 3 );
		transition: all .5s;
	}
	.menu__list--item:hover{
		box-shadow: none;
		transform: translateY(3px);
	}
}

/* ------------------------------------------------------------
#Movie
------------------------------------------------------------ */
.sec__wrap{
	padding: 32px 0 32px;
}
.sec__head{
	margin: 0 auto 16px;
	max-width: 520px;
}
.sec__lead{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.movie-cont__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.movie-cont__list--item{
	border: 2px solid var(--secondary-color);
	background: #FFF;
	padding: 12px;
	border-radius: 16px;
}
.movie-cont__head{
	position: relative;
	margin-bottom: 16px;
}
.movie-cont__date {
	color: var(--secondary-color, #D59766);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
	border-top: 1px solid var(--secondary-color, #D59766);
	border-bottom: 1px solid var(--secondary-color, #D59766);
	padding: 4px 16px;
	width: fit-content;
	margin: 4px auto 0;
}
.cont__date{
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 17px 0 10px;
	margin-bottom: 8px;
	background: url(../img/deco_date_t.svg) center top / 167px no-repeat,
	url(../img/deco_date_b.svg) center bottom / 167px no-repeat;
}
.cont__date .fz-larger{
	font-size: 1.3em;
}
.movie-cont__head__text {
	color: var(--secondary-color, #D59766);
	text-align: center;
	font-family: var(--font-cal);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 1.2px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.movie-cont__head__text::before {
	content: "";
	width: 32px;
	height: 14px;
	background: url(../img/deco_head01_l.svg) center / contain no-repeat;
}
.movie-cont__head__text::after {
	content: "";
	width: 32px;
	height: 14px;
	background: url(../img/deco_head01_r.svg) center / contain no-repeat;
}
.movie-cont__head h3{
	color: var(--primary-color);
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.movie-cont__list--item .txt01{
	font-weight: 500;
}

.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: var(--secondary-color);
	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: #FFF;
	margin-top: 0;
	padding: 14px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.step__list--item{
	display: flex;
	gap: 8px;
}
.step__label {
	width: 56px;
	text-align: center;
	padding: 2px 0;
	align-self: flex-start;
}
.step__label span{
	color: var(--accent-color);
	background-color: #FCE9F0;
	border-radius: 4px;
	font-weight: bold;
	display: block;
}
.step__txt {
	font-weight: 500;
	width: calc(100% - 56px - 8px);
	align-self: center;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{padding: 32px 0 40px;}
	.sec__head{
	margin: 0 auto 24px;
}
	.sec__lead{
		font-size: 18px;
		line-height: 1.8;
	}
	.movie-cont__list{
		gap: 32px;
		margin-bottom: 32px;
	}
	.movie-cont__list--item{
		border: 3px solid var(--secondary-color);
		padding: 24px;
		border-radius: 16px;
	}
	.movie-cont__list--item .txt01{
		font-size: 16px;
	}
	.movie-cont__head{margin-bottom: 24px;}

	.movie-cont__head h3{
		font-size: 22px;
	}
	.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: 8px;
	}
	.step__list--item{
		gap: 16px;
	}
	.step__label {
		padding: 3px 0;
		width: 82px;
	}
	.step__label span{
		font-size: 16px;
		line-height: 1.5;
	}
	.step__txt{
		font-size: 16px;
		width: calc(100% - 82px - 8px);
	}
	.cont__date{
	padding: 24px 0 14px;
	font-size: 17px;
		background: url(../img/deco_date_t.svg) center top / 218px no-repeat,
	url(../img/deco_date_b.svg) center bottom / 218px no-repeat;

}
.movie-cont__head__text {
	font-size: 24px;
}
.movie-cont__date {
	font-size: 16px;
	margin: 8px auto 0;
}
}

/* ------------------------------------------------------------
#Card
------------------------------------------------------------ */
.sec__lead .fz-smaller{
	font-size: 12px;
	font-weight: 400;
}
.img__box{
	max-width: 500px;
	margin: 0 auto;
}
.location__box--outer{
	background-color: #fff;
	padding: 8px;
	margin-bottom: 24px;
	box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.25);
}
.location__box{
	border: 1px solid var(--primary-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(--primary-color);
	margin-bottom: 16px;
}
	.location__text01 {
		font-weight: 500;
	}
	.location__accent {
		font-weight: 700;
		color: var(--primary-color);
	}
	.location__link {
		display: block;
		padding: 8px 20px;
		border-radius: 32px;
		border: 1px solid var(--primary-color, #8E413B);
		color: var(--primary-color, #8E413B);
		text-align: center;
		font-weight: 700;
		line-height: 21px; /* 150% */
		width: fit-content;
		margin: 16px auto 0;
	}


.train {--obtain-color01: #DDDFEE;}
.train {--obtain-color02: #5E5685;}
.store {--obtain-color01: #F0DAE6;}
.store {--obtain-color02: #B4618F;}


.obtain__list{
	display: flex;
	flex-direction: column;
	gap: 38px;
	margin-top: 10px;
}
.obtain__list--item{
	position: relative;
}
.obtain__list--item:not(:last-child):after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 20px solid #5E5685;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
}
.obtain__list--head{
	padding: 6px 8px;
	background-color: var(--obtain-color01);
	font-size: 12px;
	font-weight: 700;
	color: var(--obtain-color02);
	line-height: 1.4;
}
.obtain__list--head::before {
	content: "▶▶";
	padding-right: 4px;
}
.obtain__list--box{
	background-color: #fff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.25);
}
.obtain__list--step{
	background-color: var(--obtain-color02);
	color: #FFF;
	text-align: center;
	font-weight: 700;
	line-height: 1;
	font-size: 14px;
	border-radius: 20px;
	margin: 0 auto;
	width: fit-content;
	padding: 2px 12px 4px;
}
.obtain__list--txt01{
	text-align: center;
	font-weight: bold;
}
.obtain__list--txt02{
	font-size: 14px;
	font-weight: 500;
}
.obtain__list--txt03 {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: var(--red-color);
}
.step-img-btn {
	max-width: 230px;
	margin: 0 auto;
	display: block;
}
.step-img {
    max-width: 300px;
    margin: 0 auto;
}
.img-card {
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 0 auto;
}
.acc__close-btn {
	margin: 10px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--accent-color);
	padding: 6px 20px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	width: fit-content;
	background-color: var(--btn-base-color);
	border-radius: 20px;
	border: 0;
}
.acc__close-btn__text {
	color: #FFF;
	font-weight: bold;
}
.acc__close-btn span {
	display: block;
	width: 9px;
	height: 9px;
	position: relative;
}
.acc__close-btn span::before,
.acc__close-btn span::after {
	content: "";
	position: absolute;
	background-color: #FFF;
	width: 12px;
	height: 2px;
	top: 50%;
	left: 50%;
}
.acc__close-btn span::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.acc__close-btn span::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

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

	.location__box--outer{
		padding: 16px;
		margin-bottom: 32px;
	}
	.location__box{
		border: 1px solid var(--primary-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__link {
		transition: all .3s;
	}
	.location__link:hover {
		border: 1px solid #FFF;
		color: #FFF;
		background-color: var(--primary-color);

	}
.obtain__list--box {
	padding: 16px 24px 24px;
	gap: 16px;
}
.obtain__list--head {
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
}

.obtain__list--txt01 {
	font-size: 16px;
}
.obtain__list--txt02 {
	font-size: 14px;
	text-align: center;
}
.obtain__list--txt03 {
	font-size: 16px;
}
	
}

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

.img__box{
	position: relative;
}
.img_poster{
	width: 70%;
	margin: 0 auto;
	max-width: 300px;
}
.number-wp{
	background-color: #fff;
	border: 3px solid var(--primary-color);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	color: var(--primary-color);
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	bottom: 5px;
  right: 15px;
}
.number-wp span{
	text-align: center;
}
.number-wp .wp__txt01 {
	text-align: center;
	font-size: 12px;
	line-height: 1;
}
.number-wp .wp__txt02 {
	line-height: 1;
	text-align: center;
	font-size: 17px;
}
.number-wp .fz-larger{
	font-size: 1.5em;
	line-height: 1;
}

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


.number-wp {
	right: 65px;
}
.img_poster {
	width: 100%;
}
}

/* ------------------------------------------------------------
bottom-sec__wrap
------------------------------------------------------------ */
.bottom-sec__wrap{
	background: url(../img/bg_bottom.png) center top / 255px repeat #775B4F;
	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{
		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(142, 65, 59, 0.80);
	color: #FFF;
	font-family: var(--font-cal);
	text-align: center;
	padding: 6px;
	font-size: 30px;
	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;
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--primary-color);
	font-size: 24px;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}



/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */


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

.mgtSS{margin-top: 4px;}
.mgtS{margin-top: 8px;}
.mgtM{margin-top: 16px;}/* PC:24px */
.mgtL{margin-top: 24px;}/* PC:32px */
.mgtLL{margin-top: 32px;}/* PC:40px */

.pdtS{padding-top: 8px;}/* PC:8px */
.pdtM{padding-top: 16px;}/* PC:24px */
.pdtL{padding-top: 24px;}/* PC:32px */

.pdbS{padding-bottom: 8px;}/* PC:8px */
.pdbM{padding-bottom: 16px;}/* PC:24px */
.pdbL{padding-bottom: 24px;}/* PC:32px */

/* PC用設定 */
@media screen and (min-width:751px) {
	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

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

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

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

