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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--red-color: #DD0000;
	--primary-color: #1A254D;
	--sub-color: #8C91A5;
	--accent-color: #525A79;
	--gradation-color01: linear-gradient(90deg, #FAF7E1 0%, #AA955D 100%);
	--gradation-color02: linear-gradient(180deg, #5E626D 0%, #0E0D13 100%);
}
.main__wrap{
	padding-top: 66px;
	color: var(--text-color);
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 16px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
}
.font-serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
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{
	text-decoration: underline;
	font-weight:bold;
	color: var(--primary-color);
}
.txt-note{font-size: 12px;}
.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;}

.mgbS{margin-bottom: 8px;}
.mgbM{margin-bottom: 16px;}
.mgbL{margin-bottom: 24px;}
.pdtS{padding-top: 8px;}
.pdbM{padding-bottom: 16px;}

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

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.txt-note{font-size: 14px;}
	.note__list li{font-size: 14px;}
	.pc_center {text-align: center;}

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.pdbM{padding-bottom: 24px;}

}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン(初期値) */
.js__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js__fadeIn.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}

/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(5px); 
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードアップ(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); 
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}

/* フェードダウン(初期値) */
.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__zoomIn{
	opacity: 0; /* 最初は非表示 */
	filter: blur(8px);
	transform: scale(0.9, 0.9);
	transition: 1.2s ease;
}
/* フェードアップ(スクロールした後) */
.js__zoomIn.is-inview {
	opacity: 1;
	filter: blur(0);
  transform: scale(1, 1); 
}





/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background: var(--gradation-color02);
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
	background-color: #fff;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: #333;
	position: absolute;
	width: 12px;
	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%);}
.acc__body{
	margin-top: 16px;
	/* background-color: #fff; */
	color: #333;
	/* padding: 12px; */
}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block{
	margin-bottom: 16px;
}
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__pc{
		background-color: #B3B3B3;
		padding: 16px;
	}
	.voice-btn__pc--outer{
		background: var(--gradation-color01);
		padding: 3px;
		margin-bottom: 8px;
	}
	#voice .voice-btn__pc{
		background: linear-gradient(90deg, #5D92D9 0%, #98D9FA 100%);
	}
	#nagoya .voice-btn__pc{
		background: linear-gradient(90deg, #CA51C3 0%, #EDAAE6 100%);
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	
}
/* ------------------------------------------------------------
body
------------------------------------------------------------ */
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) repeat;
	background-size: 44px;
}
.sec__wrap{padding: 32px 0;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap{padding: 48px 0;}
}


/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block{
	background: url(../img/bg-mv.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background-position: bottom;
	}
	.mv__block h1{
		max-width: 850px;
		margin: 0 auto;
		padding: 16px 0 0;
	}
}

/* ------------------------------------------------------------
#intro #menu
------------------------------------------------------------ */
#intro{padding-top: 32px;}
.intro__lead{
text-align: center;
line-height: 2;
}
#menu h2{
	font-size: 32px;
	font-family: "Cormorant", serif;
	width: fit-content;
	margin: 0 auto 12px;
	position: relative;
}
#menu h2::before,#menu h2::after{
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-image: url(../img/obj-diamond.png);
	background-repeat: no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
}
#menu h2::before{
	left: -16px;
}
#menu h2::after{
	right: -16px;
}
.menu__list{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__lead{
		font-size: 18px;
		}
		#menu .container{
			max-width: 900px;
		}
		#menu h2 {
			font-size: 40px;
			margin: 0 auto 16px;
	}
	.menu__list{
		flex-direction: row;
	}
	.menu__list li{
		transition: all .5s;
	}
	.menu__list li:hover{
		transform: translateY(3px);
	}
}
/* ------------------------------------------------------------
#
------------------------------------------------------------ */
.cont-outer{
	background: var(--gradation-color01);
	padding: 2px 0;
}
.cont-inner{
	background-color: #fff;
	padding: 16px 14px;
}
#voice,#goods{
	background: linear-gradient(rgba(220,239,251,0.6),rgba(137,183,217,0.6));
	overflow: hidden;
}
#nagoya{
	background: linear-gradient(rgba(248,220,240,0.6),rgba(204,158,204,0.6));
	overflow: hidden;
}
.cont__head--group{
	position: relative;
	margin-bottom: 16px;
}
.SD-chara{position: absolute;}
.sec__lead{
	font-size: 15px;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 16px;
}
.period{margin-bottom: 24px;}
.period dl{
	background-color: var(--accent-color);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px;
}
.period dl dt{
	font-size: 14px;
	padding-right: 8px;
}
.period dl dd{
	padding-left: 8px;
	border-left: 1px solid #fff;
}
.period .txt-note{
	padding-top: 4px;
}
.bg__block{
	background-image: url(../img/bg-obj.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.cont-outer{padding: 4px 0;}
	.cont-inner{padding: 32px 100px 48px;}
	.cont__head--group{
		max-width: 480px;
		margin: 0 auto 16px;
	}
	.sec__lead {
    font-size: 16px;
    margin-bottom: 32px;
	}
	.period{
		/* width: 400px; */
		margin: 0 auto 32px;
	}
	.period dl{
		width: fit-content;
		margin: 0 auto;
		padding: 4px 12px;
	}
	.period dl dt{
		font-size: 16px;
		padding-right: 12px;
	}
	.period dl dd{
		font-size: 18px;
		padding-left: 12px;
	}
}
/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.chara01{
	width: 88px;
	top: -38px;
	right: -38px;
}
.card__box{
	padding-bottom: 24px;
	background-position: center bottom;
}
.voice__sub--head{
	font-size: 20px;
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 4px;
}
.voice__sub--head span{
	font-size: 0.8em;
	display: block;
}
.img__box{
	position: relative;
	margin-top: 16px;
}
.img__card{
	width: 250px;
	margin: 0 auto 4px;
}
.chara04{
	width: 84px;
	top: -10px;
	left: -20px;
}
.chara08{
	width: 89px;
	bottom:15px;
	right: -15px;
}
.place-info__box{
	border: 1px solid var(--sub-color);
	padding: 16px 20px;
	margin-bottom: 24px;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.place-info__box dt{
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 6px;
}
.step__box{
	border: 1px solid var(--sub-color);
	padding: 16px;
	font-size: 14px;
}
.step__box h4{
	font-weight: bold;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 12px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.step__list li{
	display: flex;
}
.step__list--label{
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	background-color: var(--sub-color);
	padding: 1px 8px;
	border-radius: 12px;
	display: inline-block;
	margin-right: 10px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice__sub--head {
    font-size: 24px;
    margin-bottom: 16px;
}
.img__box{
	margin-top: 24px;
}
.card__box {
	background-position: center bottom -32px;
}
.img__card {
	width: 340px;
	margin: 0 auto 4px;
}
.place-info__box{
	padding: 20px 32px;
	margin-bottom: 32px;
	font-size: 16px;
}
.step__box {
	padding: 20px 32px;
	font-size: 16px;
}
.step__list--label {font-size: 14px;}
.chara01 {
	width: 110px;
	top: -50px;
	right: -30px;
}
.chara04 {
	width: 116px;
	top: -24px;
	left: 0px;
}
.chara08 {
	width: 116px;
	bottom: 0;
	right: 0px;
}
}

/* ------------------------------------------------------------
#nagoya
------------------------------------------------------------ */
.chara02{
	width: 115px;
  top: -42px;
  right: -50px;
}
.nagoya-cont__block{margin-bottom: 24px;}
.nagoya-cont__block h3{margin-bottom: 16px;}
.modal__list{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.modal__list li{
	width: calc( ( 100% - 16px ) / 2 );
	position: relative;
}
.modal-icon{
	width: 40px;
	position: absolute;
	right: 0;
	bottom: 0;
}

/*************
modal
*************/
.modal__wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
}
.modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 0;
}
.modal__flex {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
	flex-direction: column;
	gap: 16px;
}
.modal__container {
	pointer-events: initial;
    max-width: 500px;
    width: calc(100% - 60px);
    padding: 0px 16px 16px 16px;
    font-size: 16px;
		background-color: #fff;
		overflow-y: auto;
}
.modal-close__btn {
	width: fit-content;
	margin: 8px 8px 0 auto;
	padding: 28px 2px 2px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	position: relative;
	cursor: pointer;
}
.modal-close__btn::before,
.modal-close__btn::after {
	content: "";
    background-color:#333;
    width: 1px;
    height: 30px;
    position: absolute;
    top: 14px;
    right: 50%;
}
.modal-close__btn::before {
	transform: translateY(-50%) rotate(-45deg);
}
.modal-close__btn::after {
	transform: translateY(-50%) rotate(45deg);
}
.spot__box img{
	margin-bottom: 8px;
}
.spot-name{
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 8px;
}
.spot-info{
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
}
.spot-info__item{
	display: flex;
}
.spot-info__item dt{
	font-weight: bold;
	color: var(--sub-color);
	padding-right: 2px;
	flex-shrink: 0;
}

.nagoya-cont__lead{
	text-align: center;
	font-size: 14px;
	margin-bottom: 16px;
}
.img__AR{
	width: 177px;
	margin: 0 auto;
}
.chara10{
	width: 102px;
	top:0;
	left: 0;
}
.chara03{
	width: 85px;
	bottom: 0;
	right: 0;
}
.chara06{
	width: 95px;
	left: 0;
	bottom: 40px;
}
.chara05{
	width: 108px;
	left: 90px;
	bottom: 0;
}
.img__box--wallpaper{
	padding-bottom: 48px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.chara02 {
    width: 136px;
    top: -40px;
    right: -50px;
}
.chara10 {
	width: 140px;
	top: 0;
	left: 36px;
}
.chara03 {
	width: 110px;
	bottom: 0;
	right: 60px;
}
.chara06 {
	width: 136px;
	left: -80px;
	bottom: 40px;
}
.chara05 {
	width: 150px;
	left: 58px;
	bottom: -20px;
}
	.nagoya-cont__block {
    margin-bottom: 48px;
}
	.nagoya-cont__block h3 {
		max-width: 400px;
		margin: 0 auto 24px;
}
.nagoya-cont__lead {
	font-size: 16px;
	margin-bottom: 24px;
}
.modal__list {
	max-width: 400px;
	margin: 0 auto;
}
.modal-btn{
	cursor: pointer;
}
.modal__container {
	max-width: 500px;
	width: calc(100% - 60px);
	padding: 0px 32px 32px;
}
.modal-close__btn {
	padding: 40px 2px 2px;
}
.img__AR {
	width: 200px;
}
.img__box--wallpaper {
	padding-bottom: 48px;
	max-width: 430px;
	margin: 24px auto 0;
}
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
.chara07{
	width: 94px;
	top: -46px;
	right: -40px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.link-btn__box{
		max-width: 400px;
		margin: 0 auto;
	}
	.link-btn{
		transition: all .5s;
	}
	.link-btn:hover{
		transform: translateY(3px);
	}
	.chara07 {
    width: 116px;
    top: -46px;
    right: -40px;
}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
.official-bnr{
	transition: all .5s;
}
a.official-bnr__link{
	background-color:var(--primary-color);
	width: 75%;
	max-width: 300px;
	margin: 0 auto;
	display: block;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.official-bnr:hover{
		opacity: 0.7;
	}
}

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





/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: .3s;
	width: 56px;
  z-index: 99;
  opacity: 0;/*デフォルトで非表示にする*/
}

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

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

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

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

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.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;
}
.cs{
	color: #fff;
	background-color: rgba(15, 0, 40, 0.8);
	font-size: 20px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 70%;
	display: flex;
	align-items: center;
  justify-content: center;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}





