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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #614C3F;
	--sub-text-color:#4E4E4E;
	--text-link: #4E4E4E;
	--primary-color: #EA8BAC;
	--accent-color: #7D9ED2;
	--red-color: #EE0000;
	--bg-color: #F5EEE4;
	--bg02-color: #FEF6F9;
	--bg03-color: #F0F5FB;
	--grad-color:linear-gradient(90deg,#E24D01 0%,#F57710 100% );
	--grad02-color:linear-gradient(90deg,#F57710 0%,#E24D01 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--font-zen: "Zen Maru Gothic", sans-serif;
	--font-yeseva: "Yeseva One", 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-image: url(../img/bg_body.png);
	background-color: var(--bg-color);
	background-position: top center;
	color: var(--sub-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: 650px;
}
.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;}
.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;}/* 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;}/* PC:8px */
.mgtM{margin-top: 16px;}/* PC:24px */
.mgtL{margin-top: 24px;}/* PC:32px */

.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 */

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


/* 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-delayed01 {animation-delay: .2s;}
.is-animation-delayed02 {animation-delay: .4s;}
.is-animation-delayed03 {animation-delay: .6s;}

/* バウンド */
.js__bound  {
	opacity: 0;
}
.js__bound.is-inview  {
	animation-name: bound;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;

}
@keyframes bound {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); opacity: 0;}
  15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
  30%  { transform: scale(1.1, 0.8) translate(0%, 15%); }
  50%  { transform: scale(0.8, 1.05) translate(0%, -10%); }
  70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); opacity: 1;}
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
	margin-top: 8px;
}
.acc__btn {
	font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    background-color: var(--text-color);
    position: relative;
    padding: 6px 46px 7px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
    background-color: #FFF;
    height: 16px;
    width: 16px;
    border-radius: 100%;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
    background-color: var(--text-color);
    position: absolute;
    width: 9px;
    height: 2px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	}
.voice-btn{position: relative;}
.voice-btn__block {
	max-width: 394px;
	margin-left: auto;
	margin-right: auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__outer {
		background: url(../img/bg_pattern02.png) top left / 18px 18px repeat #F1A9C3;
		padding: 6px;
		border-radius: 16px;
	}
	.voice-btn__pc{
		border: 1px solid #FFF;
		padding: 8px;
		border-radius: 12px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding: 8px;
	}
	.voice-btn__txt .txt01{
		font-weight: 900;
		font-size: 16px;
		margin-bottom: 8px;
		font-family: var(--font-zen);
		letter-spacing: 0;
	}
	.voice-btn__txt .txt02{
		font-weight: 500;
		font-size: 12px;
	}
	.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
------------------------------------------------------------ */
.mv__block {
	background: url(../img/bg_pattern02.png) top left / 49px 49px repeat #E4D5BB;
}
h1 {
	max-width: 425px;
	margin: 0 auto;
}



/* PC用設定 */
@media screen and (min-width:751px) { 
	h1 img {
	width: auto;
	height: calc(100vh - 90px);
	display: block;
	margin: 0 auto;
}
h1 {
	max-width: none;
}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap {
	padding: 32px 0 61px;
}
.intro__block {
	position: relative;
}
.intro__wpn {
	position: inherit;
	z-index: 0;
	max-width: 340px;
    margin: 0 auto;
}
.intro__inner {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.intro__text01 {
	color: #604D3E;
	font-family: var(--font-zen);
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	line-height: 2;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__text01 {
	font-size: 18px;
	line-height: 2.2;
}
	
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	background: url(../img/bg_pattern01.png) top left / 49px 49px repeat #988670;
	position: relative;
	padding: 32px 0;
}
.menu__wrap::before,
.menu__wrap::after {
	content: "";
	height: 20px;
	position: absolute;
	left: 0;
	right: 0;
}
.menu__wrap::before {
	top: -20px;
	background: url(../img/menu_line-top.png) top left / 29px 20px repeat-x;
}
.menu__wrap::after {
	bottom: -20px;
	background: url(../img/menu_line-bottom.png) top left / 29px 20px repeat-x;
}
.menu__head {
	font-family: var(--font-yeseva);
	font-size: 25px;
	text-align: center;
	line-height: 1.1;
	color: #FFF;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 24px;
}
.menu__btn {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}
.menu__list li{
	width: calc( ( 100% - 10px ) / 2 );
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {
		padding-bottom: 48px;
	}
	.menu__wrap .container {
		max-width: 716px;
	}
	.menu__list{gap: 16px;}
	.menu__list li{
		width: calc( ( 100% - 48px ) / 4 );
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
section
------------------------------------------------------------ */
.sec__wrap {
	padding-top: 20px;
	overflow: hidden;
	padding-bottom: 20px;
}
.sec__head {
	max-width: 397px;
	margin: 0 auto;
	padding-top: 20px;
}
.box01 {
	background-color: #FFF;
	padding: 32px 22px;
	margin-top: 28px;
	position: relative;
}
.box01.pink {
	background: url(../img/dots01.svg) 8px top / 2px 8px repeat-y ,url(../img/dots01.svg) calc(100% - 8px) top / 2px 8px repeat-y #FFF;
}
.box01.blue {
	background: url(../img/dots02.svg) 8px top / 2px 8px repeat-y ,url(../img/dots02.svg) calc(100% - 8px) top / 2px 8px repeat-y #FFF;
}
.box01::before,
.box01::after {
	content: '';
	width: 100%;
	left: 0;
	right: 0;
	height: 20px;
	position: absolute;
}
.box01::before {
	background: url(../img/sec_line-top.png) center / 71px 20px repeat-x;
	top: -20px;
}
.box01::after {
	background: url(../img/sec_line-bottom.png) center / 71px 20px repeat-x;
	bottom: -20px;
}
.box01__inner {
	max-width: 480px;
	margin: 0 auto;
}
.box01.pink {
	--box01-color: var(--primary-color);
	--box01-bg-color: var(--bg02-color);
}
.box01.blue {
	--box01-color: var(--accent-color);
	--box01-bg-color: var(--bg03-color);
}
.cont__head {
	max-width: 394px;
	margin: 0 auto;
}
.cont__text01 {
	font-family: var(--font-zen);
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.5;
}
.cont__wrap .cont__text01 {
	margin-top: 16px;
}
.cont__wrap + .cont__wrap {
	margin-top: 40px;
}

.box02 {
	max-width: 394px;
	margin-left: auto;
	margin-right: auto;
}
.box02__head {
	background-color: var(--box01-color);
	background-image:
		linear-gradient(to right, #FFF,#FFF 2px, transparent 2px),
		linear-gradient(to left, #FFF, #FFF 2px, transparent 2px);
	background-size: 4px 1px, 4px 1px;
	background-repeat: repeat-x,repeat-x;
	background-position: 0 4px, 0 calc(100% - 4px);
	color: #FFF;
	text-align: center;
	padding: 6px 0;
	font-weight: 700;
	font-family: var(--font-zen);
	font-size: 14px;
	line-height: 1.4;
}
.box02__flexbox {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items:flex-start;
	padding: 8px 0;
	margin-top: 8px;

}
.box02__flexbox + .box02__flexbox {
	background-image:
		linear-gradient(to right, var(--box01-color),var(--box01-color) 1px, transparent 1px);
	background-size: 2px 1px;
	background-repeat: repeat-x;
	background-position: top;
	margin-top: 0;
}
.box02__flexbox dt {
	font-family: var(--font-yeseva);
	width: 56px;
	background-color: var(--box01-bg-color);
	color: var(--box01-color);
	font-size: 13px;
	line-height: 1;
	border-radius: 100px;
	text-align: center;
	padding: 3px 0;
}
.box02__flexbox dd {
	width: calc(100% - 64px);
	font-family: var(--font-zen);
	color: var(--text-color);
}
.box03 {
	max-width: 394px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--box01-bg-color);
	padding: 16px;
	border-radius: 16px;
}

.box03__flexbox {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items:flex-start;
}
.box03__flexbox.column {
	flex-direction: column;
}
.box03__flexbox + .box03__flexbox {
	margin-top: 16px;
}
.box03__flexbox dt {
	font-family: var(--font-zen);
	width: 80px;
	background-color: var(--box01-color);
	color: #FFF;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 100px;
	text-align: center;
	padding: 3px 0;
	font-weight: bold;
}
.box03__flexbox.column dt {
	width: fit-content;
	padding: 3px 12px;
}
.box03__flexbox dd {
	width: calc(100% - 92px);
}
.box03__text01 {
	font-family: var(--font-zen);
	color: var(--text-color);
}
.box03__text01 .txt-link {
	color: var(--text-color);
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.box01.pink,
	.box01.blue {
	padding: 48px 40px;
	background-position: 15px top, calc(100% - 15px) top;
}
.cont__text01 {
	text-align: center;
}
.cont__wrap .cont__text01 {
	margin-top: 24px;
}
.cont__wrap + .cont__wrap {
	margin-top: 64px;
}
}

/* ------------------------------------------------------------
#exContents
------------------------------------------------------------ */
.cast__box {
	display: flex;
	gap: 21px;
	max-width: 312px;
	margin: 24px auto 0;
}
.cast__pic {
	border-radius: 8px;
}
.cast__text01 {
	font-size: 13px;
	margin-top: 8px;
	text-align: center;
	font-family: var(--font-zen);
}
.cast__text02 {
	font-size: 11px;
	text-align: center;
	font-family: var(--font-zen);
}
.pic__wrap {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.pic__img {
	margin-left: auto;
	margin-right: auto;
}
.pic01__wrap {
	background: url(../img/bg_img.png) center / 268px no-repeat;
	margin-bottom: 40px;
}
.pic01__wrap .pic__img {
	padding: 16px 0;
}
.sd__wrap {
	position: absolute;
	z-index: 2;
}
.sd01 {
	top: -9%;
    right: -12%;
    width: 110px;
}
.sd02 {
	left: -12%;
    bottom: -10%;
    width: 92px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cast__box {
	gap: 32px;
	margin-top: 32px;
}
	
}

/* ------------------------------------------------------------
#exRewards
------------------------------------------------------------ */
.pic02__wrap {
	max-width: 351px;
	width: 84%;
}
.sd03 {
	top: -15%;
    right: -31%;
    width: 91px;
}
.sd04 {
	left: -27%;
    bottom: -49%;
    width: 93px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
}

/* ------------------------------------------------------------
#nagoyaContents
------------------------------------------------------------ */
.map__wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
	align-items: center;
}
.map__left {
}
.map__box {
	position: relative;
	max-width: 301px;
	overflow: hidden;
	border-radius: 16px;
	margin: 0 auto;
}
.map-pin {
	width: 5vw;
	max-width: 18px;
	height: 5vw;
	max-height: 18px;
	background-color: #FFF;
	border-radius: 50%;
	border: 3px solid #B40101;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	cursor: pointer;
	transition: all 0.5s;
}
.map-pin.active {
	background-color: var(--primary-color);
}
/* JR名古屋駅 */
.map-pin.pin01 {
	top: 33.2%;
    left: 4.1%;
}
/* GiGOマーケットスクエア ささしま */
.map-pin.pin02 {
	top: 67.5%;
    left: 16%;
}
/* 大須商店街 */
.map-pin.pin03 {
	top: 67.5%;
    left: 54.8%;
}
/* 久屋大通庭園フラリエ */
.map-pin.pin04 {
	top: 62.5%;
    left: 75.5%;
}
/* 中部電力 MIRAI TOWER */
.map-pin.pin05 {
	top: 31.5%;
    left: 76.5%;
}
.map-spot {
	position: absolute;
	transition: all .3s;
	cursor: pointer;
}
.map-pin.active + .map-spot {
	transform: scale(1.1);
}
.spot02 {
	top: 56.5%;
    left: 26%;
    width: 43.5%;
}
.spot03 {
	top: 78%;
    left: 34%;
    width: 27%;
}
.spot04 {
	top: 73%;
    left: 67%;
    width: 29%;
}
.spot05 {
	top: 23%;
    left: 51%;
    width: 42%;
}
.spot__slide--block {
	width: 100%;
	max-width: 320px;
}

/* マップ スライドカセット*/
.spot__slide--box {
	background-color: var(--bg02-color);
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
	height: 100%;
}
.spot-name {
	font-size: 16px;
	font-weight: bold;
	font-family: var(--font-zen);
	color: var(--primary-color);
	text-align: center;
}
.spot-img {
	box-sizing: border-box;
	width: 100%;
	margin-top: 12px;
	height: 100%;
	display: flex;
    align-items: center;
}
.spot-slide-arrows {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
.spot-slide-arrow {
	background-color: #CBCBCB;
	width: 22px;
	height: 22px;
	border: none;
	border-radius: 100%;
	position: relative;
}
.spot-slide-arrow::before {
	content: "";
	position: absolute;
	display: block;
	height: 7px;
	width: 7px;
	border-top: 2px solid #1A1A1A;
	border-left: 2px solid #1A1A1A;
}
.spot-slide-prev::before {
	transform: translate(1px, -4px) rotate(-45deg);
}
.spot-slide-next::before {
	transform: translate(-2px, -4px) rotate(135deg);
}
.spot-slide-pagination .splide__pagination__page {
	height: 10px;
	width: 10px;
}
.pic03__wrap {
	background: url(../img/bg_img.png) center / 70% no-repeat;
}
.pic03__wrap .pic__img {
	width: 85%;
}
.sd05 {
	left: -7%;
    bottom: 9%;
    width: 91px;
}
.pic04__wrap {
	background: url(../img/bg_img.png) center / 75% no-repeat;
	max-width: 351px;
}
.pic04__wrap .pic__img {
	padding: 24% 0;
}
.sd06 {
	right: -13%;
    top: 67%;
    width: 81px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.map__wrap {
	flex-direction: row;
	margin-top: 32px;
	gap: 15px;
	align-items: flex-start;
	}
	.map__box {
	margin: 0;
}
	.map-pin:hover {
		background-color: var(--primary-color);
		transform: scale(1.1);
	}
	.map-pin:hover span {
		color: #fff;
	}
	.spot__slide--block {
		width: calc(100% - 316px);
	}
	.spot__slide--box {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		box-sizing: border-box;
	}
	.spot-txt {
		font-size: 14px;
	}
	.spot-info {
		font-size: 14px;
	}
	.pic03__wrap .pic__img {
	width: 93%;
}
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
#goods.sec__wrap {
	padding-bottom: 60px;
}
.pic05__wrap {
	max-width: 301px;
	margin: 24px auto 0;
	width: 100%;
}
.sd07 {
	right: -16%;
    bottom: -57%;
    width: 94px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#goods.sec__wrap {
	padding-bottom: 84px;
}
	.pic05__wrap {
	margin: 32px auto 0;
}
}



/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
#information.sec__wrap {
	background-image:
		linear-gradient(to right, #E0ACBD,#E0ACBD 16px, #E1B2C1 16px, #E1B2C1 32px);
	background-size: 32px 100%;
	background-repeat: repeat-x;
	background-position: top left;
	padding-bottom: 24px;
}
.info__head {
	margin: 0 auto;
	max-width: 345px;
}
.info__link {
	display: block;
	max-width: 255px;
	padding: 15px;
	background-color: #FFF;
	border-radius: 16px;
	margin: 16px auto 0;
	transition: all .5s;
}
.info__link:hover {
	/* opacity: 0.7; */
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
	transform: scale(1.02);
}
#information .txt-note {
	color: #FFF;
	text-align: center;
	margin-top: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}




/* ------------------------------------------------------------
#credit
------------------------------------------------------------ */
#credit {
	background-color: #FFF;
}
.credit {
	font-size: 10px;
	color: #000;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}



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




.icon_phone {
	width: 46px;
	display: block;
	margin: 16px auto;
}
/* splide */
.splide {
  position: relative;  /* ここで基準にする */
}
/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
	position: absolute;
	top: 50%;    /* 縦中央 */
	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;
}

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

/* スライド自体をフレックスコンテナに */
.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;
}
.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin: 0 auto;
}
.slide__box--inner p{
	font-weight: bold;
	font-size: 15px;
}
.img-btn_VT01{
	width: 172px;
	margin: 0 auto 8px;
}
.plate-bk{
	background-color: #000;
	color: #fff;
	border-radius: 40px;
	padding: 3px 12px;
	line-height: 1.2;
	margin-bottom: 2px;
	margin-top: 2px;
}
.aori-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4px;
}
.aori-txt::before, .aori-txt::after {
	width: 2px;
	height: 24px;
	background-color: #000;
	content: '';
}
.aori-txt::before {
	transform: rotate(-35deg);
	margin-right: 20px;
}
.aori-txt::after {
	transform: rotate(35deg);
	margin-left: 20px;
}
.slide__box--inner.flex{
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.flex-left{
width: 80%;
flex-shrink: 0;
}
.slide__box--inner .icon{
	width: 36px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.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: 56px;
	z-index: 99;
	opacity: 0;/*デフォルトで非表示にする*/
}

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

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

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

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

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.7);
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-family: var(--font-yeseva);
	font-size: 16px;
}
.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%;
	} */
}



