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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #3D3D55;
	--sub-text-color:#000000;
	--text-link: #66D8EA;
	--primary-color: #FF57B5;
	--secondary-color: #CDA5EB;
	--accent-color: #66D8EA;
	--red-color: #FF0000;
	--bg-color: #FFFFFF;
	--bg02-color: rgb(0 0 0 / 0.8);
	--border-color: #aaaaaa;
	--grad-color:linear-gradient(90deg,#FF57B5 0%,#CDA5EB 100% );
	--grad-color02:linear-gradient(90deg,#66D8EA 0%,#CDA5EB 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--font-yeseva: "Yeseva One",serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #66D8EA; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* 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.4;
	font-size: 14px;
	font-family:"LINE Seed JP", '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;
line-height: 1.4;}
img{
	display: block;
	width: 100%;
	height: auto;
}

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);}
.fc-accent{color: var(--red-color);}
.fc-white{color: #FFF;}
.fc-sub {color: var(--sub-text-color)}

.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight: bold;
}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 11px;}
.fz-10{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__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/* フェードアップ */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}

.js__popUp {
	opacity: 0;
	transform: scale(0);
	transition: transform .5s;
}
.js__popUp.is-inview {
	opacity: 1;
	transform: scale(1);
}

.js__popUp2 {
	opacity: 0;
	transform: scale(0);
	transition: transform cubic-bezier(0.7, 0.2, 0.5, 1.5) .5s;
}
.js__popUp2.is-inview {
	opacity: 1;
	transform: scale(1);
}

/* animationフェードダウン */
.js__fadeDown{
	opacity: 0; /* 最初は非表示 */
	transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
	animation-name:fadeInDown;
	animation-duration: 1.3s;
	animation-fill-mode: both;
	opacity: 1;
}

@keyframes fadeInDown {
	from {
			opacity:0;
			transform:translate3d(0, -8%, 0);
	}
	to {
			opacity:1;
			transform:none;
	}
}

/* ブラー*/
.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;
	}
}

/* flipLeft */
.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;
	}
}

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

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	transition: all .8s;
}

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

@keyframes anime_diagonal_wipe {
	0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
/* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
	100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
}

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

.js__listFlip li {
	opacity: 0;
	transform: rotateY(360deg);
}
.js__listFlip.is-inview li {
	animation-name: listFlip;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFlip li:nth-child(1) {animation-delay: 0s;}
.js__listFlip li:nth-child(2) {animation-delay: .2s;}
.js__listFlip li:nth-child(3) {animation-delay: .4s;}
.js__listFlip li:nth-child(4) {animation-delay: .6s;}
.js__listFlip li:nth-child(5) {animation-delay: .8s;}
.js__listFlip li:nth-child(6) {animation-delay: 1s;}
.js__listFlip li:nth-child(7) {animation-delay: 1.2s;}
.js__listFlip li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listFlip {
	from {
	opacity: 0;
	transform: rotateY(360deg);
	}
	to {
	opacity: 1;
	transform: rotateY(0);
	}
}


.js__listPopUp li {
	opacity: 0;
	transform: scale(0);
}
.js__listPopUp.is-inview li {
	animation-name: listPopUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listPopUp li:nth-child(1) {animation-delay: 0s;}
.js__listPopUp li:nth-child(2) {animation-delay: .2s;}
.js__listPopUp li:nth-child(3) {animation-delay: .4s;}
.js__listPopUp li:nth-child(4) {animation-delay: .6s;}
.js__listPopUp li:nth-child(5) {animation-delay: .8s;}
.js__listPopUp li:nth-child(6) {animation-delay: 1s;}
.js__listPopUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listPopUp li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listPopUp {
	from {
	opacity: 0;
	transform: scale(0);
	}
	to {
	opacity: 1;
	transform: scale(1);
	}
}



.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 {
	margin-top: 8px;
	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%);}

.acc__block02 {
	width: 100%;
}
.acc__block02 .acc__btn {
	background-color: var(--accent-color);
	position: relative;
	padding: 4px 20px;

}
.acc__block02 .acc__btn_plus {
	position: absolute;
	right: 8px;
}
/* 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: 430px;
		margin: 0 auto;
	}
	.voice-btn__pc{
		background: linear-gradient(90deg,#D49E1D,#FEFC82 50%, #D49E1D);
		padding: 24px;
		position: relative;
		border-radius: 26px;
	}
	.voice-btn__pc::before {
		content: "";
		border-radius: 24px;
		position: absolute;
		top: 3px;
		bottom: 3px;
		left: 3px;
		right: 3px;
		border: 3px solid #FFF;
		background-color: var(--primary-color);
		z-index: 1;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
		position: relative;
		z-index: 2;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 16px;
		margin-bottom: 8px;
		line-height: 1.4;
	}
	.voice-btn__txt .txt02 {
		font-size: 12px;
	}
	.voice-btn__img {
		position: relative;
		z-index: 2;
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block {
	background: url(../img/bg_brick.jpg) center top / 582px repeat;
	padding: 14px 6px;
}
.mv__img {
	border: 2px solid #FFF;
}
.mv__right {
	margin-top: -7vw;
}
.mv__date {
	margin: 8px auto 0;
    width: 95%;
	position: relative;
}
h1 {
	margin: 0 auto;
    width: 98.35%;
}
.border01 {
	height: 20px;
	width: 100%;
	background:  url(../img/obj_line01.png) center top / auto 20px repeat-x;
}
.mv__twinkle {
	position: absolute;
}
.mv__twinkle.tw01 {
	width: 20px;
    top: -60%;
    right: 42%;

}
.mv__twinkle.tw02 {
	width: 20px;
    bottom: -30%;
    left: -2%;
}
.mv__twinkle.tw03 {
	width: 20px;
    top: -30%;
    right: -3%;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block {
		padding: 16px;
	}
	.mv__flex {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
		max-width: 1200px;
		gap: 16px;
		margin: 0 auto;
	}
	.mv__right {
		margin-top: 0;
		width: 45%;
	}
	h1 {
		width: 100%;
	}
	.mv__img {
		width: 55%;
	}
	.mv__date {
		width: 100%;
		margin-top: 16px;
	}
	.mv__twinkle.tw01 {
	width: 30px;
    top: -60%;
    right: 42%;

}
.mv__twinkle.tw02 {
	width: 30px;
    bottom: -40%;
    left: -2%;
}
.mv__twinkle.tw03 {
	width: 30px;
    top: -30%;
    right: -3%;
}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.bg__main {
	background: url(../img/bg-sp.jpg) left top / 100% repeat-y;
}
.intro__flex {
	display: flex;
	flex-direction: column;
	padding: 40px 0 24px;
	align-items: center;
	justify-content: center;
	gap: 24px;
	position: relative;
	max-width: 440px;
    margin: 0 auto;
}
.intro__text01 {
	max-width: 327px;
}
.intro__text02__wrap {
	position: relative;
	width: 100%;
	max-width: 400px;
	overflow: hidden;
	padding: 8px 0;
}
.intro__text02 {
	position: absolute;
	transform: rotate(-12deg);
	top: 28%;
	z-index: 2;
}
.demo-mask{
	position: absolute;
    transform: rotate(-12deg);
    top: 28%;
    left: 0;
    width: 100%;
    aspect-ratio: 378 / 52;
    -webkit-mask-image: url(../img/txt_lead02.png);
    mask-image: url(../img/txt_lead02.png);
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    mask-position: left top;
	z-index: 3;
}

.demo-hikari{
	position: absolute;
	top: -50%;
	left: -60%;
	width: 60%;
	padding: 60% 0 0;
	background-image: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
	transform: skewY(30deg);
}
.demo-mask.is-inview .demo-hikari {
	animation: demo_kirari .5s linear 1s forwards;
}
@keyframes demo_kirari{
	100%{
		left: 100%;
	}
}
.intro__text02__glass {
	width: 125px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.intro__twinkle {
	position: absolute;
}
.intro__twinkle.tw01 {
	width: 37px;
    top: 36%;
    left: 10%;
}
.intro__twinkle.tw02 {
	width: 36px;
    top: 7%;
    right: 7%;
}
.intro__twinkle.tw03 {
	width: 32px;
    top: 41%;
    right: 0%;
}
.intro__twinkle.tw04 {
	width: 32px;
    bottom: 10%;
    left: 0%;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
.bg__main {
	background: url(../img/bg.jpg) left top / 100% repeat-y;
}


}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding-bottom: 48px;
}
.menu__head {
	margin: 0 auto;
	width: 128px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 8px auto 0;
	max-width: 470px;
}
.menu__list li{
	width: calc( ( 100% - 10px ) / 2 );
	max-width: 153px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{gap: 20px;
	max-width: none;}
	.menu__list li{
		width: calc( ( 100% - 60px ) / 4 );
		max-width: 153px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
	padding: 12px 16px 16px;
	background-color: #FFF;
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.step__list + .step__list {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 2px dotted var(--accent-color);
}
.step__list dt {
	background: url(../img/wp_step.png) center / contain no-repeat;
	color: #FFF;
	width: 42px;
	height: 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
}
.step__step {
	font-family: var(--font-yeseva);
	font-size: 10px;
	line-height: 1;
}
.step__num {
	font-size: 18px;
	font-family: var(--font-yeseva);
	line-height: .9;
}
.step__list dd {
	width: calc(100% - 42px - 8px);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.step__wrap {
	padding: 16px;
}
}

/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
.sec__wrap {
	padding-bottom: 32px;
	padding-top: 1px;
}
.sec__top {
	position: relative;
	z-index: 1;
	max-width: 313px;
	margin: 0 auto;
}
.sec__top__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	background: url(../img/obj_heart.png) center / contain no-repeat;
}
.sec__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding-bottom: 8px;
	margin-top: 32px;
}
.sec__top__ribbon,
.sec__head,
.sec__date__wrap {
	opacity: 0;
	transform: scale(0);
	transition: transform .5s;
}
.is-inview .sec__top__ribbon,
.is-inview .sec__head,
.is-inview .sec__date__wrap {
	opacity: 1;
	transform: scale(1);
}
.sec__top__ribbon {
	width: 19.49%;
	transition-delay: .4s;
}
.sec__head {
	transition-delay: .6s;
}
.sec__date__wrap {
	padding: 8px 16px;
	background: var(--grad-color02);
	position: relative;
	margin-top: 8px;
	transition-delay: .8s;
	max-width: 256px;
	width: 100%;
}
.sec__date__wrap.sec__date1 {
	border-radius: 16px;
}
.sec__date__wrap.sec__date2 {
	padding: 5px 16px;
	border-radius: 40px;
}
.sec__date__wrap::after {
	position: absolute;
	content: "";
	top: 1px;
	left: 1px;
	bottom: 1px;
	right: 1px;
	background-color: #FFF;
	z-index: 1;
}
.sec__date__wrap.sec__date1::after {
	border-radius: 15px;
}
.sec__date__wrap.sec__date2::after {
	border-radius: 40px;
}
.sec__date__wrap img {
	position: relative;
	z-index: 2;
}
.sec__mascot {
	position: absolute;
	opacity: 0;
	transform: translateY(15px);
	transition: all .8s 1s;
}
.is-inview .sec__mascot {
	opacity: 1;
	transform: translateY(0);
}
.sec__mascot img {
	animation: mascotFloat 5s ease-in-out 0s infinite;
}
@keyframes mascotFloat {
	0% {transform: translateY(0);}
	25% {transform: translateY(4px) rotate(-2deg);}
	50% {transform: translateY(1px) rotate(0);}
	75% {transform: translateY(3px) rotate(2deg);}
	100% {transform: translateY(0);}
}
.sec__mascot.mascot1 {
    width: 27.8%;
    top: -17%;
    left: 10%;
}
.sec__mascot.mascot2 {
    width: 22.7%;
    top: -6%;
    left: 0%;
}
.sec__mascot.mascot3 {
	width: 23%;
    top: -17%;
    right: -1%;
}
.box01 {
	background: 
	url(../img/obj_cnrA1.png) 6px 6px / 48px auto no-repeat,
	url(../img/obj_cnrA2.png) calc(100% - 6px) 6px / 48px auto no-repeat,
	url(../img/obj_cnrA3.png) 6px calc(100% - 6px) / 48px auto no-repeat,
	url(../img/obj_cnrA4.png) calc(100% - 6px) calc(100% - 6px) / 48px auto no-repeat  rgba(255, 255, 255, 0.80);
	padding: 32px 14px;
	gap: 24px;
	display: flex;
	align-items: center;
	align-self: stretch;
	flex-direction: column;
	border-radius: 24px;
	border: 2px solid var(--primary-color, #FF57B5);
	box-shadow: 0 0 8px 0 var(--primary-color);
	margin-top: 8px;
	position: relative;
	z-index: 1;
}
.cont__lead {
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}
.img__wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}
.img__wrap__bg {
	position: absolute;
    z-index: -1;
    top: 0;
    left: 4%;
    bottom: 0;
    right: 4%;
    background: url(../img/obj_bg-heart.png) center / contain no-repeat;
}
.img__pic {
	margin: 0 auto;
}
.img__twinkle, .img__jewel {
	position: absolute;
	z-index: 5;
}
.img__wallpaper .img__twinkle.tw01 {
	width: 50px;
    top: 10%;
    left: 10%;
}
.img__wallpaper .img__twinkle.tw02 {
	width: 50px;
    top: 50%;
    right: 7%;
}
.img__wallpaper .img__twinkle.tw03 {
	width: 50px;
    bottom: 0%;
    left: 0%;
}
.img__wallpaper .img__jewel.je01 {
	width: 8px;
    top: 10%;
    left: 10%;
}
.img__wallpaper .img__jewel.je02 {
	width: 8px;
    top: 50%;
    right: 7%;
}
.img__wallpaper .img__jewel.je03 {
	width: 7px;
    bottom: 0%;
    left: 0%;
}
.img__wallpaper .img__jewel.je04 {
	width: 6px;
    bottom: 0%;
    left: 0%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__top {
		max-width: 370px;
	}
	.box01 {
		padding: 32px 80px;
		gap: 40px;
	}
	.cont__lead {
		font-size: 16px;
	}
	.cont__lead .fz-10 {
		font-size: 12px;
}
.sec__date__wrap {
	max-width: 316px;
}

}
/* ------------------------------------------------------------
#ex_contents
------------------------------------------------------------ */
.story__wrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}
.story__text li {
	font-weight: bold;
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}
.story__jewel {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}
.story__jewel li {
	width: 13px;
}

.sub_head__wrap {
	max-width: 313px;
	margin: 0 auto;
	padding-top: 16px;
}
.cast__wrap {
	background-color: #F5EDFB;
	border-radius: 24px;
	padding: 8px;
}
.cast__flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 16px;
	column-gap: 20px;
	border: 1px dashed var(--secondary-color, #CDA5EB);
	border-radius: 20px;
	background: 
	url(../img/obj_cnrB1.png) 3px 3px / 40px auto no-repeat,
	url(../img/obj_cnrB2.png) calc(100% - 3px) 3px / 40px auto no-repeat,
	url(../img/obj_cnrB3.png) 3px calc(100% - 3px) / 40px auto no-repeat,
	url(../img/obj_cnrB4.png) calc(100% - 3px) calc(100% - 3px) / 40px auto no-repeat;
	padding: 12px 28px;
}
.cast__flex li {
	width: calc((100% - 20px) / 2);
}
.cast__character {
	font-weight: bold;
	color: var(--secondary-color);
	text-align: center;
	margin-top: 4px;
	line-height: 1.2;
}
.cast__cv {
	text-align: center;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.6;
}
.img__wallpaper .img__pic {
	width: 55%;
    padding: 2% 0 0;
}
.voice__wrap {
	width: 100%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cast__flex li {
		width: calc((100% - 60px) / 4);
	}
}

/* ------------------------------------------------------------
#ex_rewards
------------------------------------------------------------ */
.img__cap {
	position: absolute;
	z-index: 2;
}
.img__plus {
	width: 20px;
	height: 20px;
	margin: 0 auto;
	position: relative;
}
.img__plus::before,
.img__plus::after {
	width: 4px;
	height: 20px;
	border-radius: 1px;
	background-color: var(--accent-color);
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
}
.img__plus::before {
	transform: translate(-50%,-50%);
}
.img__plus::after {
	transform: translate(-50%,-50%) rotate(90deg);
}
.img__postcard .img__pic {
	width: 71%;
    padding: 5% 0;
}
.img__postcard .img__cap {
	width: 51.5%;
    transform: rotate(-9deg);
    top: 2%;
    left: 4%;
}
.img__postcard .img__twinkle.tw01 {
	width: 50px;
    bottom: 6%;
    left: 4%;
}
.img__postcard .img__twinkle.tw02 {
	width: 50px;
    top: 2%;
    right: 4%;
}
.img__postcard .img__jewel.je01 {
	width: 6px;
    bottom: 8%;
    left: 7%;
}
.img__postcard .img__jewel.je02 {
	width: 8px;
    top: 9%;
    right: 4%;
}
.img__badge .img__pic {
	width: 92.9%;
    padding: 13% 0 8%;
}
.img__badge .img__cap {
	width: 72.55%;
    transform: rotate(5deg);
    top: 4%;
    right: 3%;
}
.img__badge .img__twinkle.tw01 {
	width: 50px;
    top: -3%;
    left: 4%;
}
.img__badge .img__twinkle.tw02 {
	width: 50px;
    bottom: 6%;
    right: 6%;
}
.img__badge .img__jewel.je01 {
	width: 6px;
    top: 14%;
    left: 6%;
}
.img__badge .img__jewel.je02 {
	width: 6px;
    bottom: 20%;
    right: 5%;
}

.box02 {
	background: var(--grad-color02);
	border-radius: 16px;
	position: relative;
	z-index: 1;
	padding: 16px;
	width: 100%;
}
.box02::after {
	content: "";
	background-color: #FFF;
	border-radius: 14px;
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	z-index: -1;
}
.box02 dt {
	background: var(--grad-color02);
	color: #FFF;
	font-weight: bold;
	padding: 2px 0;
	line-height: 1.5;
	text-align: center;
}
.box02__text01 {
	font-weight: bold;
	text-align: center;
}
.logo__store {
	width: 70%;
    max-width: 210px;
    margin: 0 auto;
}
.box03 {
	background-color: rgba(255, 255, 255, 0.80);
	padding: 8px;
}
.box03__head {
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.box03 {
	padding: 24px;
}
.box02__pc__flex {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.logo__store {
	width: 45%;
	margin: 0 0 0 auto;
}
.box02__text01 {
	text-align: left;
	width: 55%;
}

}

/* ------------------------------------------------------------
#ex_present
------------------------------------------------------------ */
.img__standee .img__pic {
	width: 95%;
    padding: 6% 0 0;
}
.img__standee .img__wpn {
	position: absolute;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/wp_circle.png) center / contain no-repeat;
	color: #FFF;
}
.img__wpn p {
	font-weight: bold;
	line-height: 16px;
	font-size: 12px;
	text-align: center;
}
.img__wpn p span {
	font-size: 15px;
	line-height: 16px;
}
.img__standee .img__twinkle.tw01 {
	width: 50px;
    bottom: 35%;
    left: 0%;
}
.img__standee .img__twinkle.tw02 {
	width: 50px;
    top: -6%;
    right: 32%;
}
.img__standee .img__twinkle.tw03 {
	width: 50px;
    bottom: 21%;
    right: 1%;
}
.img__standee .img__jewel.je01 {
	width: 6px;
    bottom: 47%;
    left: 14%;
}
.img__standee .img__jewel.je02 {
	width: 6px;
    top: -2%;
    right: 32%;
}
.img__standee .img__jewel.je03 {
	width: 6px;
    bottom: 21%;
    right: 13%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
splide
------------------------------------------------------------ */
.ar_splide__wrapper {
	width: 100%;
}
.ar_splide .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 16px;
}
.ar_splide .splide__arrow {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all .3s;
	position: relative;
	background-color: var(--accent-color);
	border-radius: 8px;
	width: 48px;
	height: 48px;
}
.ar_splide .splide__arrow:disabled {
	background-color: var(--accent-color);
}
.ar_splide .splide__arrow::before{
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	top: calc(50% - 4px);
}
.ar_splide .splide__arrow--prev::before {
	transform: rotate(-135deg);
	right: calc(50% - 4px);
}
.ar_splide .splide__arrow--next::before {
	transform: rotate(45deg);
	left: calc(50% - 4px);
}
.ar_splide .splide__pagination {
	gap: 8px;
}
.ar_splide .splide__pagination__page {
	display: block;
	border: none;
	padding: 0;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	cursor: pointer;
	background-color: #F5F5F5;
}
.ar_splide .splide__pagination__page.is-active {
	background-color: var(--primary-color);
}
.pagination {
	width: 38px;
	text-align: center;
}
.ar_splide .splide__item {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.splide__item__img {
	width: 120px;
	display: flex;
	align-items: center;
	margin-top: 8px;
}
.splide__item__img img {
	transform: scale(.8);
	transition: all .3s;
}
.splide__slide.is-active .splide__item__img img {
	transform: scale(1);
}
.splide__item__area {
	background-color: var(--text-color);
	padding: 2px 0;
	color: #FFF;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	width: 100%;
}
.splide__item__character {
	margin-top: 4px;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
.splide__item__place {
	margin-top: 4px;
	font-size: 10px;
	text-align: center;
	line-height: 1.2;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.ar_splide .splide__arrow:hover {
		transform: scale(1.1);
	}
	.splide__item__img {
	width: 150px;
	}
	.splide__item__area {
		width: 80%;
		font-size: 14px;
	}
	.splide__item__character {
		font-size: 14px;
	}
	.splide__item__place {
		font-size: 12px;
	}
}


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

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
#information .sec__top__ribbon {
	width: 17%;
}
#information .sec__inner {
	padding-bottom: 32px;
}
.border02 {
	height: 20px;
	width: 100%;
	background:  url(../img/obj_line02.png) center top / auto 20px repeat-x;
}
.bg__info {
	background: url(../img/bg_brick-purple.jpg) center top / 582px repeat;
}
.info__wrap {
	padding: 1px 0 32px;
}
.img__movie {
	max-width: 313px;
	width: 100%;
	border: 5px solid #FFF;
	margin: 24px auto 0;
}
.movie__link {
	padding: 16px 18px;
	border-radius: 40px;
	background-color: #FFF;
	border: 3px solid var(--accent-color);
	box-shadow: 0 0 8px 0 rgba(102, 216, 234, 0.50);
	color: var(--accent-color);
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
	max-width: 225px;
	width: 100%;
	margin: 0 auto;
	display: block;
	transition: all .3s;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.info__wrap {
		padding: 1px 0 64px;
	}
	.img__movie {
		max-width: 400px;
		margin: 32px auto 0;
	}
	.movie__link:hover {
		background-color: var(--accent-color);
		color: #FFF;
	}
}




/* ------------------------------------------------------------
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);
}
.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;
	background: rgba(255, 255, 255, 0.7);
}
	/* .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用設定 */
@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;}
}
