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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--text-link: #2689FD;
	--accent-color: #FF6BB2;
	--red-color: #FF4A4A;
	--bg-color: #EBFAFF;
	--bg02-color: #2689FD;
	--bg03-color: #D7FBFF;
	--bg04-color: #FFAA66;
	--grad-color:linear-gradient(-90deg,#FF96ED 0%,#70A5FF 100% );
	--grad02-color:linear-gradient(-90deg,#FF4948 0%,#FFAA66 100% );
	--grad03-color:linear-gradient(-90deg,#08A1FF 0%,#25EFFF 100% );
	--grad04-color:linear-gradient(-90deg,#C77EF6 0%,#70A5FF 100% );
	--grad05-color:linear-gradient(-90deg,#15E37B 0%,#A6FC0E 100% );
	--grad06-color:linear-gradient(-90deg,#FFA558 0%,#FF6899 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--wave-height: 24px;
}
#voiceStory {
		--grad-color:linear-gradient(90deg,#C77EF6 0%,#70A5FF 100% );
}
#visualCard {
		--grad-color:linear-gradient(-90deg,#15E37B 0%,#A6FC0E 100% );
}
#presentCampaign {
		--grad-color:linear-gradient(90deg,#FFA558 0%,#FF6899 100% );
}
#nagoyaSta, #signage {
		--grad-color:linear-gradient(-90deg,#08A1FF 0%,#25EFFF 100% );
}
@media screen and (min-width:751px) {
	:root {
		--wave-height: 6.4vw;
	}
}
/* 背景固定 */
/* 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: var(--bg-color);
	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: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{
	font-size: 12px;
	line-height: 1.4;
}
.txt-note.fz-s {font-size: 11px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}

.note__list li.fc-red{color: var(--red-color);}

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

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

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

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

.pdbS{padding-bottom: 8px;}
.pdbM{padding-bottom: 16px;}
.pdbL{padding-bottom: 24px;}

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

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

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

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

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

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

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン(初期値) */
.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); /* XXpx上に移動する */
}


/* 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__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%);
	}
}

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


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
}
.acc01 .acc__body {
	padding: 12px 0 0;
}
.acc02 .acc__body {
	padding: 16px 6px;
	border: 1px solid var(--bg02-color);
}
.acc03 .acc__body {
	padding: 16px 0;
}
.acc__btn {
	font-weight: bold;
	margin: 0 auto;
	color: #fff;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	line-height: 1.2;
	padding: 8px 48px 8px 24px;
}
.acc01 .acc__btn {
	background-color: #000;
	border-radius: 40px;
	width: fit-content;
}

.acc02 .acc__btn,
.acc03 .acc__btn {
	background-color: var(--bg02-color);
	width: 100%;
	padding: 8px;
	border: 1px solid var(--bg02-color);
}
.acc__btn span {
	position: absolute;
	background-color: #FFF;
	height: 16px;
	width: 16px;
	border-radius: 100%;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}
.acc02 .acc__btn span,
.acc03 .acc__btn span {
	right: 8px;
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc01 .acc__btn span::before,
.acc01 .acc__btn span::after {
	background-color: #000;
}
.acc02 .acc__btn span::before,
.acc02 .acc__btn span::after,
.acc03 .acc__btn span::before,
.acc03 .acc__btn span::after {
	background-color: var(--bg02-color);
}
.acc02 .icon_phone {
	width: 46px;
	display: block;
	margin: 16px auto;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}

.acc04 {
	width: 100%;
	max-width: 400px;
}
.acc04 .acc__btn {
	border-radius: 4px;
	padding: 8px 0;
	position: relative;
	line-height: 1.2;
}
.acc04 .acc__btn::after {
	content: "";
	position: absolute;
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #FFF;
	border-left: 2px solid #FFF;
	transform: translateY(-2px) rotate(225deg);
	top: calc(50% - 3px);
	right: 10px;
	transition: all .3s;
}
.acc04 .acc__btn.open::after {
	transform: rotate(45deg);
}
.acc04.ngy .acc__btn {
	background-color: #C77EF6;
}
.acc04.tky .acc__btn {
	background-color: #6FDCBA;
}
.acc04.osk .acc__btn {
	background-color: #F67EC0;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.acc02 .acc__btn,
	.acc03 .acc__btn {
		font-size: 15px;
	}
}


/* ------------------------------------------------------------
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__pc{
		background: var(--grad02-color);
		border: 3px solid #FF4948;
		padding: 16px;
		border-radius: 16px;
		max-width: 640px;
		margin: 0 auto;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
		filter: drop-shadow(0 0 6px #FF4948);
	}
	.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;
	}
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__wrap {
	position: relative;
}
.mv__bg {
	margin-bottom: 0;
	/* background: var(--grad-color); */
}
.mv__bg {
	background: linear-gradient(-45deg, #FF96ED, #70A5FF, #FF96ED, #70A5FF) fixed;
	background-size: 700% 700%;
	animation: GraduationAnimation 6s ease infinite;
  }
  
  @keyframes GraduationAnimation { 
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
  }
.kv_splide {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.kv_splide .splide__slide img {
  transition: 8s ease;
}
.kv_splide .splide__slide.is-active img {
  transform: scale(1.05);
  transition-delay: 0s;
}
/* スライドのサイズ調整 */
.kv_splide .splide__slide img {
  height: auto;
  width: 100%;
}
.kv__list li {
	width: 100%;
}
.kv_pagination {
	gap: 8px;
    height: 8px;
    margin-top: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.kv_page {
	border: none;
    background-color: #d9d9d9;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    display: block;
    padding: 0;
}
.kv_page.is-active {
	background-color: var(--bg02-color);
}
h1 {
	padding-top: 24px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	h1{
		padding-top: 0;
		max-width: 1200px;
		width: 100%;
		position: absolute;
        bottom: 4%;
        left: 50%;
        transform: translateX(-50%);
        filter: drop-shadow(0px 1px 19px white);
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	h1 img {
		width: 50%;
	}
	.mv__wrap {
		padding-bottom: 20px;
	}

}

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

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding:32px 0 calc(var(--wave-height) + 40px);
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}
.menu__list li{
	width: 148px;
}
.menu__list a {
	display: block;
}
.menu__list img {
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.10));
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {
	padding: 20px 0 calc(var(--wave-height) + 48px);
}
	.menu__list{gap: 32px;}
	.menu__list li{
		width: calc(100% / 3 - 80px);
	}
	.menu__list li a{
		transition: all .5s;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
date
------------------------------------------------------------ */

.date__block {
	border: 1px solid #FFF;
	padding: 4px 16px;
	display: flex;
	justify-content: center;
	width: fit-content;
	border-radius: 100px;
	gap: 8px;
	margin: 0 auto;
	background: var(--grad-color);
	align-items: center;
}
.date__num {
	font-family: Jost;
	font-weight: 700;
	color: #FFF;
	font-size: 16px;
	line-height: 1.05;
}
.date__day {
	font-size: 10px;
	line-height: 1;
	padding-left: 0.5em;
}
.date__block img {
	width: 7px;
}

.date__mv {
	background: var(--grad03-color, linear-gradient(270deg, #08A1FF 0%, #25EFFF 100%));
	padding: 10px 20px;
	margin-top: 8px;
}
.date__mv .date__num {
	font-size: 18px;
}
.date__mv .date__day {
	font-size: 12px;
}
.date__mv.date__block img {
	width: 9px;
}

.box01 .date__block {
	background: #FFF;
}
#voiceStory .box01 .date__block {border-color: #70a5ff;}
#voiceStory .box01 .date__num {color: #70a5ff;}
#presentCampaign .box01 .date__block {border-color: #FF7689;}
#presentCampaign .box01 .date__num {color: #FF7689;}
#visualCard .box01 .date__block {border-color: #15E37B;}
#visualCard .box01 .date__num {color: #15E37B;}

.box04.ngy .date__block {border-color: #C77EF6;}
.box04.ngy .date__num {color: #C77EF6;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.date__num {
		font-size: 20px;
	}
	.date__day {
		font-size: 14px;
	}
	.date__mv .date__num {
		font-size: 22px;
	}
	.date__mv .date__day {
		font-size: 16px;
	}
	.date__mv {
		margin-top: 16px;
	}
}

/* ------------------------------------------------------------
section
head
------------------------------------------------------------ */
.sec__wave {
	position: relative;
}
.sec__wave::before {
	position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: var(--wave-height);
    content: "";
}
.wave01::before {
	background: url(../img/wave01.svg) center / cover no-repeat;
}
.wave02::before {
	background: url(../img/wave02.svg) center / cover no-repeat;
}
.wave03::before {
	background: url(../img/wave03.svg) center / cover no-repeat;
}
.wave04::before {
	background: url(../img/wave04.svg) center / cover no-repeat;
}
.sec__inner {
	padding: 40px 0 calc(var(--wave-height) + 40px);

}
.sec__head01 {
	text-align: center;
	font-family: Jost;
	font-size: 26px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
#specialPromotion .sec__head01 {
	color: #E1DE16;
}
#information .sec__head01 {
	color: #F6FF00;
}
.sec__head01::before,
.sec__head01::after {
	display: block;
    width: 13px;
	font-size: 13px;
}
#specialPromotion .sec__head01::before,
#specialPromotion .sec__head01::after {
    content: url(../img/twinkle01.svg);
}
#information .sec__head01::before,
#information .sec__head01::after {
    content: url(../img/twinkle02.svg);
}
.sec__head03 {
	color: #F6FF00;
	text-align: center;
	font-family: Jost;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
}
.sec__head02 {
	position: relative;
	max-width: 345px;
	width: 100%;
	margin: 0 auto;
}
.sec__head02 h2 {
	position: inherit;
	z-index: 2;
	transform: scale(.2);
	transform-origin: 50% 100%;
	opacity: 0;
	transition: all .5s ease 0s;
}
.sec__head02.is-inview h2 {
	transform: scale(1) rotate(0);
	opacity: 1;
}
.sec__head__deco {
	position: absolute;
	opacity: 0;
	width: 1%;
	transition: all .7s;
}
.is-inview .sec__head__deco {
	opacity: 1;
}
#voiceStory .deco-R {
	right: 50%;
	top: 50%;
}
#voiceStory .is-inview .deco-R {
	right: -2%;
	top: -8%;
	width: 24.35%;
}
#voiceStory .deco-L {
	left: 50%;
    bottom: 50%;
}
#voiceStory .is-inview .deco-L {
	left: -3%;
    bottom: -12%;
    width: 19.71%;
}
#visualCard .deco-R {
	right: 50%;
	top: 50%;
}
#visualCard .is-inview .deco-R {
	right: 0%;
    top: -15%;
    width: 13.6%;
}
#visualCard .deco-L {
	left: 50%;
    bottom: 50%;
}
#visualCard .is-inview .deco-L {
	left: -2%;
    bottom: -5%;
    width: 22.03%;
}
#presentCampaign .deco-R {
	right: 50%;
	top: 50%;
}
#presentCampaign .is-inview .deco-R {
	right: -3%;
    top: -17%;
    width: 16.813%;
}
#presentCampaign .deco-L {
	left: 50%;
	top: 50%;
}
#presentCampaign .is-inview .deco-L {
	left: -2%;
    top: -17%;
    width: 13.625%;
}
#nagoyaSta .deco-R {
	right: 50%;
    top: 50%;
}
#nagoyaSta .is-inview .deco-R {
	right: -3%;
    top: -17%;
    width: 17.4%;
}
#nagoyaSta .deco-L {
	left: 50%;
    bottom: 50%;
}
#nagoyaSta .is-inview .deco-L {
	left: -2%;
    bottom: -17%;
    width: 17.11%;
}
#signage .deco-R {
	right: 50%;
    top: 50%;
}
#signage .deco-L {
	left: 50%;
    bottom:  50%;
}
#signage .is-inview .deco-R {
	right: -3%;
    top: -47%;
    width: 17.393%;
}
#signage .is-inview .deco-L {
	left: -2%;
    bottom: -40%;
    width: 19.422%;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__inner {
	padding: 48px 0 calc(var(--wave-height) + 60px);

}
.sec__head01 {
	font-size: 36px;
}
.sec__head02 {
	max-width: 450px;
}
}
/* ------------------------------------------------------------
box
------------------------------------------------------------ */
.box01 {
	border-radius: 16px;
	background-color: #FFF;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
	padding: 24px 14px;
}
.box01__text01 {
	text-align: center;
	font-weight: 500;
	line-height: 1.5;
	color: #000;
}
.box02 {
	padding: 26px 12px;
	position: relative;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
}
.box02::before,
.box02::after {
	content: "";
	position: absolute;
	background: var(--grad-color);
	width: 100%;
	left: 0;
	height: 10px;
}
.box02::before {
	border-radius: 8px 8px 0 0;
	top: 0;
}
.box02::after {
	border-radius: 0 0 8px 8px;
	bottom: 0;
}
.box02__head {
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
}
.box02__dl {
	margin-top: 16px;
	display: flex;
	gap: 12px;
}
.box02__dl + .box02__dl {
	border-top: 1px solid #DDD;
	margin-top: 8px;
	padding-top: 8px;
}
.box02__dl dt {
	border-radius: 30px;
	background: var(--grad-color);
	color: #FFF;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 10px;
	width: 52px;
	text-align: center;
}
.box02__dl dd {
	font-weight: 500;
	line-height: 1.5;
}
.box02__cs {
	color: #B0B0B0;
	font-weight: 700;
}
.box03 {
	border: 1px solid #17E37A;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	max-width: 460px;
	margin: 24px auto 0;
}
.box03__head {
	color: #FFF;
	text-align: center;
	font-weight: 700;
	line-height: 1.7;
	align-self: stretch;
	background: var(--grad05-color, linear-gradient(-90deg, #15E37B 0%, #A6FC0E 100%));
}
.box03__text01 {
	font-weight: 500;
	color: #000;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.box01 {
	border-radius: 16px;
	padding: 40px 80px;
}
	.box01__text01 {
		font-size: 15px;
	}
}

/* ------------------------------------------------------------
#Intro
------------------------------------------------------------ */
.intro__text01 {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}
.intro__text02 {
	font-size: 12px;
}
.intro__text03 {
	color: var(--accent-color);
	font-weight: 900;
}
.intro__wrap {
	padding-top: 36px;
	padding-bottom: calc(var(--wave-height) + 32px);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.intro__wrap {
	padding-top: 40px;
	padding-bottom: calc(var(--wave-height) + 48px);
}
}

/* ------------------------------------------------------------
#specialPromotion
------------------------------------------------------------ */
#specialPromotion.sec__wrap .sec__inner {
	background-color: var(--bg02-color);
	color: #FFF;
}
#specialPromotion .date__block {
	background: none;
}
.sp_splide {
	position: relative;
	width: 100%;
	/* max-width: 1200px; */
	margin: 24px auto 0;
	padding-bottom: 18px;
}
.sp__list li {
	width: 100%;
}
.sp_pagination {
	gap: 8px;
    height: 8px;
    margin-top: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.sp_page {
	border: none;
    background-color: #FFF;
	opacity: 0.5;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    display: block;
    padding: 0;
}
.sp_page.is-active {
	opacity: 1;
}
.sp_arrow {
	position: absolute;
	top: calc(50% - 15px);    /* 縦中央 */
	transform: translateY(-50%);  /* 上下補正 */
	background: none;
	border: none;
	padding: 0;
	width: auto;
	height: auto;
	z-index: 10;   /* スライドの上に表示 */
	cursor: pointer;
	filter: drop-shadow(0 3px 3px rgba(0,0,0,0.1));
}
/* 左右の位置 */
.sp_arrow.splide__arrow--prev {right: calc(50% + 130px);}
.sp_arrow.splide__arrow--next {left: calc(50% + 130px);}
/* 画像だけ表示 */
.sp_splide .splide__arrow img {
	display: block;
	width: 29px;
	height: auto;
}
.sp_splide .splide__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 255px;
	height: 140px;
}
.sp_splide .splide__slide .sp__img_wrap {
	height: 100%;
	width: 100%;
	transform-origin: center;
	transition: .5s;
	transform: scale(0.9);
	position: relative;
}
.sp_splide .splide__slide.is-active .sp__img_wrap {
	transform: scale(1);
	z-index: 1;
}
.sp_splide .splide__slide .sp__img_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sp__img_caption {
	font-size: 11px;
    font-weight: bold;
    padding: 2px 8px 4px;
    line-height: 1.2;
    color: #FFF;
    width: fit-content;
    margin: 4px auto 0;
    letter-spacing: 0.02em;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(90deg, rgb(55 132 218 / 70%), rgb(115 43 191 / 30%));
}
.button01 {
	display: flex;
	padding: 10px 20px;
	background-color: #fff;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 24px auto 0;
	border-radius: 8px;
}
.button01__inner {
	color: #2689FD;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	padding-right: 28px;
}
.button01__inner::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url(../img/arrow-down01.svg) center / contain no-repeat;
}
.button01:hover {
	opacity: .7;
	transition: all .5s;
}
.sp__obj_left {
	object-position: 30% center;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sp_splide .splide__slide {
	width: 400px;
	height: 210px;
}

.sp_splide .splide__arrow img {
	width: 40px;
}
.sp_arrow {
	top: calc(50% - 20px);
}
.sp_arrow.splide__arrow--prev {right: calc(50% + 195px);}
.sp_arrow.splide__arrow--next {left: calc(50% + 195px);}

.sp_arrow:hover {
	transition: all .3s;
	opacity: .7;
}
.sp__img_caption {
	font-size: 13px;
}
}


/* ------------------------------------------------------------
#voiceStory
------------------------------------------------------------ */
#voiceStory .sec__inner {
	background-color: var(--bg03-color);
}

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




/* ------------------------------------------------------------
#visualCard
------------------------------------------------------------ */
.card_img__wrap {
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.card_img__wpn {
	position: absolute;
	width: 64px;
	height: 64px;
	background: url(../img/wp01.png) center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -23px;
	right: -20px;
}
.card_img__wpn p {
	color: #FFF;
	text-align: center;
	font-weight: 700;
	line-height: 1.7;
}
.train {--obtain-color: #14D0EE;}
.store {--obtain-color: #50DF69;}


.obtain__list{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.obtain__list--item{
	position: relative;
}
.obtain__list--item:not(:last-child):after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 16px solid var(--bg02-color);
	border-left: 32px solid transparent;
	border-right: 32px solid transparent;
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
}
.obtain__list--head{
	padding: 4px;
	text-align: center;
	background-color: var(--obtain-color);
	font-size: 14px;
	font-weight: 700;
	color: #FFF;
	line-height: 1.2;
}
.obtain__list--box{
	background-color: #fff;
	padding: 16px;
	color: #000000;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid var(--obtain-color);
}
.obtain__list--step{
	text-align: center;
	color: var(--obtain-color);
	font-family: Jost;
	font-size: 16px;
	line-height: 1;
}
.obtain__list--txt01{
	text-align: center;
	font-weight: bold;
}
.obtain__list--txt02{
	text-align: center;
	font-size: 12px;
}
.step-img-btn {
	max-width: 178px;
	margin: 0 auto;
	display: block;
}
.step-img {
    width: 85%;
    max-width: 280px;
    margin: 0 auto;
}
.img-card {
	width: 100%;
	max-width: 280px;
	display: block;
	margin: 0 auto;
}
.acc__close-btn {
	display: flex;
	padding: 5px 12px;
	align-items: center;
	gap: 6px;
	width: fit-content;
	margin: 24px auto 0;
	border: 1px solid #333;
	line-height: 1.2;
	font-weight: 500;
	background-color: #FFF;
	font-size: 14px;
	color: #333;
}
.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: #000;
	width: 12px;
	height: 1px;
	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) {
.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--step {
	font-size: 22px;
}
.obtain__list--txt01 {
	font-size: 18px;
}
.obtain__list--txt02 {
	font-size: 14px;
}
	.card_img__wpn {
		width: 96px;
		height: 96px;
		bottom: -21px;
        right: -60px;
	}
	.card_img__wpn p {
		font-size: 24px;
	}
}

/* ------------------------------------------------------------
#presentCampaign
------------------------------------------------------------ */
#presentCampaign .sec__inner {
	background-color: var(--bg03-color);
}
.box05 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	align-self: stretch;
}
.box05__head01 {
	background: var(--grad-color, linear-gradient(90deg, #FFA558 0%, #FF6899 100%));
	padding: 6px 0;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	line-height: 1.05;
	letter-spacing: 1.6px;
	font-weight: 700;
	width: 100%;
}
.box05__head01_num {
	line-height: 1;
    font-size: 16px;
    padding-bottom: 4px;
}

.box05__head02 {
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
}

#presentCampaign .box05__head02 {color: #FF7689;}
#visualCard .box05__head02 {color: #15E37B;}


.box05__cs {
	color: #B0B0B0;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: .7;
}
.present_img__wrap {
	position: relative;
	width: 85%;
	max-width: 500px;
	margin: 0 auto 4px;
}
.present_img__wrap img {
	border-radius: 16px;
}
.present_img__wpn {
	position: absolute;
	width: 64px;
	height: 64px;
	background: url(../img/wp02.png) center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -21px;
	right: -22px;
}
.present_img__wpn p {
	color: #FFF;
	text-align: center;
	font-weight: 700;
	line-height: 1;
}
.box06 {
	border: 1px solid #000;
	padding: 14px;
}
.box06__head {
	font-size: 12px;
	text-align: center;
	line-height: 1.4;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.present_img__wpn {
		width: 96px;
		height: 96px;
		bottom: -21px;
        right: -60px;
	}
	.present_img__wpn p {
		font-size: 24px;
	}
	.box05__head01 {
		font-size: 18px;
	}
	.box05__head02 {
		font-size: 18px;
	}
}



/* ------------------------------------------------------------
#nagoyaSta
------------------------------------------------------------ */

.box04 {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	border-radius: 16px;
}
.box04.ngy {
	background-color: #FAF5FE;
}
.box04.other {
	background-color: #FEFEF0;
}
.box04__head {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: flex;
    align-items: center;
    gap: 12px;
	justify-content: center;
}
.box04__head::before,
.box04__head::after {
    width: 12px;
	display: block;
}
.ngy.box04__head::before,
.ngy.box04__head::after {
	content: url(../img/twinkle03.svg);
}
.tky.box04__head::before,
.tky.box04__head::after {
    content: url(../img/twinkle04.svg);
}
.osk.box04__head::before,
.osk.box04__head::after {
    content: url(../img/twinkle05.svg);
}
.nagoyaSta__head.box04__head {
	font-size: 18px;
	gap: 14px;
}

.box04__place {
	font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 4px;
	justify-content: center;
	margin-top: 8px;
	margin-bottom: 4px;
}
.box04__place::before {
	content: url(../img/place_ngy.svg);
    display: block;
    height: 13px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.box04 {
		padding: 32px;
	}
	.box04__head {
		font-size: 18px;
	}
	.acc04 .acc__btn {
		font-size: 16px;
	}
}


/* ------------------------------------------------------------
#signage
------------------------------------------------------------ */
#signage .sec__inner {
	background-color: var(--bg03-color);
}

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


/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
#information .sec__inner {
	background-color: var(--bg04-color);
	color: #FFF;
}
.info__logo {
	display: block;
	width: 100%;
	max-width: 305px;
	margin: 24px auto 0;
}
.button02 {
	display: flex;
	color: var(--bg04-color);
	background-color: #FFF;
	border-radius: 100px;
	width: 290px;
	height: 64px;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin: 16px auto 0;
	border: 1px solid #FFF;
	transition: all .7s;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.button02:hover {
	background-color: var(--bg04-color);
	color: #FFF;
}
}


/* ------------------------------------------------------------
credit
------------------------------------------------------------ */
.credit {
	font-size: 10px;
	line-height: 1.5;
	text-align: center;
	padding: 8px 0;
	
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
teaser
------------------------------------------------------------ */
.teaser {
	padding: 30px 0;
	text-align: center;
	font-weight: 700;
	font-family: Jost;
	font-size: 32px;
	width: fit-content;
	margin: 0 auto;
	background: var(--grad-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.teaser {
		font-size: 40px;
	}
}





/* splide */
.howto_splide.splide {
	position: relative;  /* ここで基準にする */
	padding-bottom: 24px;
	max-width: 400px;
	margin: 0 auto;
}
/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
	position: absolute;
	top: calc(50% - 12px);    /* 縦中央 */
	transform: translateY(-50%);  /* 上下補正 */
	background: none;
	border: none;
	padding: 0;
	width: auto;
	height: auto;
	z-index: 10;   /* スライドの上に表示 */
	cursor: pointer;
}
/* 左右の位置 */
.howto_splide .splide__arrow--prev {left: -3px;  /* 左端 */}
.howto_splide .splide__arrow--next {right: -3px;  /* 右端 */}
/* 画像だけ表示 */
.howto_splide .splide__arrow img {
	display: block;
	width: 29px;   /* お好みで調整 */
	height: auto;
}
.howto_splide .splide__arrow:disabled {
	opacity: .5;
}

/* ページネーションリセット */
.howto_splide .splide__pagination {
	all: unset;
	display: flex !important; /* 強制表示 */
	justify-content: center;
	gap: 8px;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.howto_splide .splide__pagination__page {
	all: unset;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #D9D9D9;
}
.howto_splide .splide__pagination__page.is-active {
	background: var(--bg02-color);
}

/* スライド自体をフレックスコンテナに */
.howto_splide .slide__box {
	display: flex;             /* フレックス化 */
	flex-direction: column;    /* 上下方向 */
	justify-content: center;   /* 縦中央 */
	align-items: center;       /* 横中央 */
	text-align: center;        /* テキスト中央寄せ */
	background-color: #F5F5F5;
	border-radius: 8px;
	padding: 16px 8px;
}
.howto_splide .splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 93%;
    margin: 0 auto;
}
.howto_splide .slide__box--inner p{
	font-weight: bold;
	font-size: 15px;
}
.howto_splide .img-btn_VT01{
	width: 172px;
	margin: 0 auto 8px;
}
.howto_splide p.plate-bk{
	background-color: var(--text-color);
	color: #fff;
	border-radius: 40px;
	padding: 4px;
    line-height: 1.2;
    width: fit-content;
    margin: 2px auto 5px;
	font-size: 14px;
}
.howto_splide .aori-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4px;
}
.howto_splide .aori-txt::before, .aori-txt::after {
	width: 1px;
	height: 20px;
	background-color: #000;
	content: '';
}
.howto_splide .aori-txt::before {
	transform: rotate(-25deg);
    margin-right: 12px;
}
.howto_splide .aori-txt::after {
	transform: rotate(25deg);
	margin-left: 12px;
}
.howto_splide .slide__box--inner.flex{
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.howto_splide .flex-left{
width: 80%;
flex-shrink: 0;
}
.howto_splide .slide__box--inner .icon{
	width: 36px;
}
.howto__text01 {
	font-size: 13px;
	text-align: center;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.howto_splide .flex-left{
		width: auto;
		}
}



/* ------------------------------------------------------------
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: 64px;
	z-index: 99;
	opacity: 0;/*デフォルトで非表示にする*/
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10));
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
	position: absolute;
	top: -70px;
	bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.8);
	color: #FF4948;
	font-weight: bold;
	font-family: Jost;
	font-size: 18px;
	text-align: center;
	padding: 6px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}



