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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #292422;
	--text-link: #BA3B80;
	--primary-color: #BA3B80;
	--secondary-color: #F0B951;
	--red-color: #D60000;
	--bg-white-color: #FFFFFF;
	--bg02-color: rgb(255 255 255 / 0.6);
	--border-color: #DCDAD5;
	--grad-color01:linear-gradient(90deg, #B43483 0%, #F15B92 100%);
	--grad-color02:linear-gradient(90deg,#894E0F 0%,#CE8C31 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #292422; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
	--font-garamond: "EB Garamond", serif;
}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) 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;
	-webkit-font-smoothing: antialiased;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}
.w100 {width: 100%;}
a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 650px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-white{color: #FFF;}

.txt-link{
	color: var(--text-link);
	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);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.credit{
	font-size: 10px;
	padding-top: 8px;
	text-align: center;
	background-color: #FFF;
}

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

/* PC用設定 */
@media screen and (min-width:751px) {
	:root {
    --scale-factor: 1.15; /* 1.15倍に */
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */

.js__fadeUp{
	opacity: 0;
	transform: translateY(15px);
	transition: opacity .8s, transform .8s;
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}

.js__open {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
	transition: all .8s;
}

.js__open.is-inview {
	animation-name: anime_open_wipe;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
}

@keyframes anime_open_wipe {
	0% {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
	}
	100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

.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__blurAnime{opacity: 0;}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		opacity: 0;
	}

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

.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s;
}
.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;
	}
}
.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;}
.js__listFadeUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listFadeUp li:nth-child(8) {animation-delay: 1.4s;}

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



.is-transition-delayed00 {transition-delay: .2s;}
.is-transition-delayed01 {transition-delay: .4s;}
.is-transition-delayed02 {transition-delay: .6s;}
.is-transition-delayed03 {transition-delay: .8s;}
.is-transition-delayed04 {transition-delay: 1s;}
.is-animation-delayed {animation-delay: .4s;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__block01 .acc__body {
	color: var(--text-color);
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--primary-color);
	padding: 6px 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.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__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__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%);}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__block {
		max-width: 500px;
		margin: 0 auto;
	}
	.voice-btn__pc{
		border-radius: 20px;
	border: 2px solid var(--secondary-color, #F0B951);
	background: #FFF;
		padding: 22px;
		position: relative;
		z-index: 1;
	}
	.voice-btn__pc::before {
		position: absolute;
		content: "";
		top: 6px;
		right: 6px;
		bottom: 6px;
		left: 6px;
		background: url(../img/bg_VT.jpg) center top / cover no-repeat;
		z-index: -1;
		border-radius: 14px;
	}
	.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: 15px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

/* サイズをかえる書き方 */
.SD01 {
	width: calc(81px * var(--scale-factor));
}

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

/* .bg_top {
	background: url(../img/bg_top.png) center top / 100px repeat,
	url(../img/bg-pattern02.png) center top / 284px repeat,
	linear-gradient(to bottom, #FFFBFA,#E5DBB1);
} */
.mv__block {
	position: relative;
	padding-bottom: 26%;
}
.mv__img {
	width: 100%;
	aspect-ratio: 4 / 3;
}
.h1__wrap {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
.mv__block {
	padding-bottom: 0;
}
.h1__wrap {
	top: 60%;
	bottom: auto;
}
h1 {
	width: 50%;
	max-width: 700px;
}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap {
	padding: 24px 0 32px;
}
.intro__text01 {
	text-align: center;
	font-family:var(--font-serif);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.6;
	background: var(--grad-color01);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
	margin: 0 auto;
}
.intro__text02 {
	margin-top: 16px;
	text-align: center;
	font-family:var(--font-serif);
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap {
	padding: 40px 0 56px;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding-bottom: 48px;
}
.menu__head {
	max-width: 450px;
	margin: 0 auto;
}
.menu__list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0 24px;
    max-width: 400px;
    margin: 16px auto 0;
}
.menu__list li{
	width: 100%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {
	padding: 24px 0 56px;
}

	.menu__list{
		gap: 10px 8px;
		max-width: none;

	}
	.menu__list li{
		width: calc( ( 100% - 8px ) / 2 );
		max-width: 297px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}


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

/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
/* .bg_top {
	background: url(../img/bg_top.png) center top / 100px repeat,
	url(../img/bg-pattern02.png) center top / 284px repeat,
	linear-gradient(to bottom, #FFFBFA,#E5DBB1);
} */
.bg_main {
		background: url(../img/bg-pattern.svg) center top / 64px repeat #F0E0F4;
}
.bg_xcp {
		background: url(../img/bg-pattern.png) center top / 319px repeat #7996F2;
}
.bg_info {
	background: url(../img/bg_info.png) center top / 100px repeat,
	linear-gradient(to bottom, #680039,#990F54);
}
.border {
	height: 20px;
	background: url(../img/cont_line.png) center / cover no-repeat;
}

.sec__wrap {
	padding: 32px 0 24px;
}
.sec__top {
	padding-bottom: 32px;
}
.sec__head {
	max-width: 450px;
	margin: 0 auto;
}
.sec__date {
	max-width: 450px;
	margin: 0 auto;
}
.sec__date img {
	width: 66.135%;
	margin: 0 auto;
}
.sec__lead {
	color: var(--text-color, #292422);
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
}
.box01 {
padding: 20px;
background: url(../img/bg-frame.jpg) center / cover no-repeat;
position: relative;
z-index: 1;
}
.box01::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	border: 2px solid var(--secondary-color, #F0B951);
	background: #FFF;
}
.box01__head {
	color: var(--primary-color, #BA3B80);
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}
.box01__dl dt {
	font-weight: 500;
}
.box01__dl dt::before {
	content: "◆";
	font-weight: 500;
	color: var(--primary-color);
}
.box01__dd__text01 {
	font-weight: 500;
}
.box01__dl dd + dt {
	margin-top: 10px;
}
.box02 {
	background-color: var(--bg02-color);
	padding: 14px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {
	padding: 40px 0 32px;
}
.border {
	height: 20px;
	background: url(../img/cont_line-pc.png) center / cover no-repeat;
}
.box01 {
	margin: 0 auto;
	max-width: 500px;
}

}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.cast__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 5px;
}
.cast__list li {
	width: calc((100% - 15px) / 4);
}
.cast__list li.double {
	width: calc((100% - 5px) / 2);
}
.cast__name {
	color: #FFF;
	text-align: center;
	font-size: 9px;
	font-weight: 400;
	line-height: 1.1;
	background: var(--text-color, #292422);
	padding: 2px 0;
}
.cast__list li .cast__img {
	aspect-ratio: 3/4;
}
.cast__list li.double .cast__img {
	aspect-ratio: 17/11;
}

/* step */

.step__list {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	justify-content: center;
}
.step__list + .step__list {
	margin-top: 16px;
}
.step__list dt {
	background-color: var(--primary-color);
	font-family: var(--font-garamond);
	color: #FFF;
	font-weight: bold;
	line-height: 1;
	width: 56px;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
}
.step__list dd {
	width: calc(100% - 56px - 12px);
	font-weight: 500;
}
.step__flex__wrap {

}
.step__flex {
	display: flex;
	gap: 8px;
	justify-content: space-between;
}
.step__flex + .step__flex {
	margin-top: 16px;
}
.step__flex .step__list {
	flex-direction: column;
	align-self: center;
	gap: 4px;
	width: calc(100% - 80px - 8px);
}
.step__flex .step__list dd {
	width: 100%;
}
.step__img {
	width: 80px;
	height: 80px;
	align-self: flex-start;
}
.step__flex .step__list .txt-note {
	font-weight: 400;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cast__list {
		gap: 16px 10px;
	}
.cast__name {
	font-size: 11px;
	font-weight: 500;
	padding: 4px 0;
}
.cast__list li {
	width: calc((100% - 30px) / 4);
}
.cast__list li.double {
	width: calc((100% - 10px) / 2);
}

}

/* ------------------------------------------------------------
#rewards
------------------------------------------------------------ */
.img__wrap {
	max-width: 500px;
	margin: 0 auto;
}
.item__head {
	border-radius: 32px;
	background: var(--grad-color01);
	padding: 0 24px 2px 24px;
	color: #FFF;
	text-align: center;
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	width: fit-content;
	margin: 0 auto;
}
.get_bromide__head {
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	padding: 4px 0;
	background: var(--primary-color, #BA3B80);
}
.bromide_splide {
	position: relative;
}

.bromide_splide .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
}
.bromide_splide .splide__arrow {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all .3s;
	/* 以下 矢印をギャラリーの左右に浮かせる場合 */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.bromide_splide .splide__arrow--next {
	right: 0;
}
.bromide_splide .splide__arrow--prev {
	left: 0;
}
.bromide_splide .splide__arrow:disabled {
	opacity: .7;
}
.bromide_splide .splide__item {
	width: calc(100% - 80px);
	margin: 0 auto;
	max-width: 300px;
	height: 100%;
	background-color: var(--border-color);
}
.bromide_splide .splide__item__img {
	min-height: 187px;
	display: flex;
	align-items: center;
	background-color: #FFF;
	padding: 12px 20px;
	position: relative;
}
.splide__item__text {
	padding: 16px;
	font-weight: 500;
	height: 100%;
}
.splide__item__code_wrap {
	position: absolute;
    bottom: 11px;
    width: 100%;
    display: flex;
    justify-content: center;
    left: 0;
}
.splide__item__code {
	padding: 6px 8px;
	border: 1px solid var(--border-color, #DCDAD5);
	background: #FFF;
	color: var(--text-color, #292422);
	text-align: center;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
}
.splide__item__code span {
	font-size: 13px;
}
.splide__item__num {
	width: 32px;
	height: 32px;
	background-color: var(--primary-color);
	color: #FFF;
	font-family: "Noto Serif JP";
	font-size: 18px;
	font-weight: 800;
	line-height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}
/* PC用設定 */
@media screen and (min-width:751px) {
.bromide_splide .splide__arrows {
	display: none;
}
.splide.is-initialized:not(.is-active) .splide__list {
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: space-around;
}
.bromide_splide .splide__item {
	width: auto;
	max-width: none;
}
.bromide_splide .splide__slide {
	width: calc((100% - 32px) / 3);
}
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}


/* ------------------------------------------------------------
#promotion
------------------------------------------------------------ */
.box03 {
	background: #FFF;
	box-shadow: 0 12px 12px -12px rgba(0, 0, 0, 0.15);
	padding: 24px 16px;
}
.cont__head__sub_title {
	color: var(--text-color, #292422);
	text-align: center;
	font-family: "Noto Serif JP";
	font-weight: 600;
	line-height: 1.5;
	border-radius: 2px;
	background: var(--secondary-color, #F0B951);
	padding: 0 4px 2px;
	width: fit-content;
	margin: 0 auto;
}
.cont__head__title {
	color: var(--text-color, #292422);
text-align: center;
font-family: "Noto Serif JP";
font-size: 20px;
font-weight: 700;
line-height: 1.5;
}
.cont__lead {
	font-weight: 500;
}
.box04 {
	background: #FDF4F8;
	display: flex;
	padding: 14px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}
.box04__dl {
	width: 100%;
}
.box04__dl dt {
	background-color: var(--primary-color);
	color: #FFF;
text-align: center;
font-size: 12px;
font-weight: 700;
line-height: 1.75;
}
.box04__dd__text01 {
	font-weight: 500;
	text-align: center;
}
.box04__dd__text02 {
	font-weight: 500;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cont__lead {
		text-align: center;
}
.box03{
	padding: 32px 75px;
}
}


/* ------------------------------------------------------------
#xcp
------------------------------------------------------------ */
.xcp__box {
	display: flex;
	padding: 40px 0;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	/* background-color: #FFF; */
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8) 20%, rgba(255, 255, 255, .8) 80%, transparent);

	margin-bottom: 16px;
}
.xcp__box p {
	background: linear-gradient(90deg, #2756C3 0%, #AA93E9 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-family: "EB Garamond";
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	transform: rotate(-8deg);
	padding: 0 0 .2em;
}
/* PC用設定 */
@media screen and (min-width:751px) {

.xcp__box p {
		font-size: 48px;

}
}


/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info__wrap {
	padding: 32px 0;
}
.info__head {
	color: #FFF;
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}
.banner__wrap {
	max-width: 450px;
	margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.info__wrap {
	padding: 40px 0;
}
.banner__link {
	transition: all .3s;
}
.banner__link:hover {
	opacity: .7;
}
}



/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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{
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.8) 80%, transparent);
	font-size: 20px;
	font-family: var(--font-garamond);
}

.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: 50%;
	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%;
	} */
}




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


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