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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #ffffff;
	--sub-text-color:#556F9F;
	--primary01-color: #FF9FFF;
	--primary02-color: #7F6EDD;
	--red-color: #FFFF00;
	--accent-color: #FFF57E;
	--bg-color: rgb(85 111 159 / 0.4);
	--en-fontfamily: "Lobster", sans-serif;
}
body::before {
	content: "";
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg01.png),transparent linear-gradient(180deg, #038FE6 0%, #2FB09A 100%) 0% 0%;
}
.main__wrap{
	padding-top: 66px;
	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;
	overflow: hidden;
}
.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(--accent-color);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 12px;}
.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;}

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

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

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

.pdbM{padding-bottom: 16px;}

.credit{
	font-size: 12px;
	padding-top: 8px;
	text-align: center;
}
.en{font-family: var(--en-fontfamily);}

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

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

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

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

	.pdbM{padding-bottom: 24px;}

}

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

.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__slideDown{
/* 初期状態：上の線だけに絞り込まれている状態 */
  /* polygon(左上, 右上, 右下, 左下) */
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: all .8s;
}

.js__slideDown.is-inview {
  animation-name: anime_top_to_bottom; /* 名前を分かりやすく変更 */
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}

@keyframes anime_top_to_bottom {
  0% {
      /* 開始：高さ0%の状態 */
      clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
      /* 終了：高さ100%の状態（全体表示） */
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: var(--primary01-color);
  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: var(--primary01-color);
	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,.note-bg{
	margin-top: 16px;
	background: rgba(85, 111, 159, 0.4);
	padding: 14px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.acc__body, .note-bg {
    padding: 24px;
}
}


/* ------------------------------------------------------------
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: transparent linear-gradient(90deg, #4CABFF 0%, #B0D139 100%) 0% 0%;
		border: 8px solid #fff;
		padding: 16px;
		border-radius: 20px;
	}
	.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;
	}
	
}

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

/* ------------------------------------------------------------
#intro #menu
------------------------------------------------------------ */
.intro__period{
	border: 1px solid #fff;
	padding: 6px;
	text-align: center;
	margin-bottom: 24px;
}
.intro__period dt{
	background-color: #fff;
	color: var(--sub-text-color);
	font-weight: bold;
	padding: 2px;
}
.intro__period dd{
	font-size: 16px;
	font-weight: bold;
}
.intro__period dd span{
	font-size: 1.5em;
}
.intro__lead{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
}
.menu__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.menu__list li{
	transition: all .5s;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.intro__lead {
    font-size: 18px;
    line-height: 2;
		text-align: center;
} 
	#menu .container{
		max-width: 1000px;
	}
	.menu__list{
		flex-direction: row;
		gap: 16px;
	}
	.intro__period {
    padding: 16px;
    margin-bottom: 24px;
}
.intro__period dd {
	font-size: 18px;
}
.menu__list li:hover{
	transform: translateY(5px);
}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.sec__head{
	max-width: 420px;
	margin: 0 auto 32px;
	position: relative;
}
.sec__head::before,.sec__head::after{
	content: "";
	width: 150px;
	height: 150px;
	background-image: url(../img/obj-01.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	z-index: -1;
}
.sec__head::before{
	top: -16px;
	right: -60px;
}
.sec__head::after{
	bottom: -24px;
	left: -60px;
}
.sec__head--top{
	max-width: 250px;
	margin: 0 auto 12px;
}
.sec__period{
	margin-bottom: 16px;
	text-align: center;
}
.sec__period dt{
	color: var(--sub-text-color);
	font-weight: bold;
	background-color: #fff;
	padding: 2px;
}
.sec__period dd{
	font-weight: bold;
	font-size: 16px;
}
.sec__period dd span{
	font-size: 1.3em;
}
.schedule__list--box{
	border: 1px solid #fff;
	padding: 14px;
	margin-bottom: 24px;
}
.schedule__list--head{
	text-align: center;
	font-weight: bold;
	margin-bottom: 12px;
}
.schedule__list li{
	font-size: 16px;
	font-weight: bold;
}
.schedule__list li span{
	font-size: 18px;
	margin-right: 12px;
}
.schedule__list li:not(:last-child){
	margin-bottom: 6px;
}

.howto.acc__block{
	margin-bottom: 24px;
}
.howto .acc__btn{
    width: 100%;
    padding: 6px 0;
    border-radius: 0;
		text-align: center;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.step__list--head{
	background-color: #fff;
	color: var(--sub-text-color);
	font-family: var(--en-fontfamily);
	font-size: 16px;
	text-align: center;
	padding: 2px;
	margin-bottom: 8px;
}
.step__list--head span{
	font-size: 1.2em;
	padding-left: 2px;
}
.step-img{
	width: 140px;
	margin: 0 auto;
	padding-top: 12px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
.sec__head--top {max-width: 300px;}
.sec__head::before,.sec__head::after{
	width: 180px;
	height: 180px;
}
.sec__head::before {
	top: -24px;
	right: -120px;
}
.sec__head::after {
	bottom: -56px;
	left: -120px;
}
.sec__period dd {font-size: 18px;}
.schedule__list--bpx {
	padding: 20px;
	margin-bottom: 32px;
}
.schedule__list li:not(:last-child) {margin-bottom: 12px;}
.schedule__list li {font-size: 18px;}
.schedule__list li span {font-size: 22px;}
.howto.acc__block {margin-bottom: 32px;}
.step__list {gap: 32px;}
.step__list--head {font-size: 20px;}
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
#goods{
	padding-bottom: 32px;
}
.sec__lead{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	line-height: 1.7;
	margin-bottom: 16px;
}
.sec__lead .txt-note{
	display: block;
	font-weight: normal;
}
.goods-lineup{
	position: relative;
	margin-bottom: 32px;
}
.goods-lineup__txt{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: transparent linear-gradient(180deg, rgba(176, 190, 255, 1) 0%, rgba(127, 110, 221, 1) 100%) 0% 0% no-repeat padding-box;
	display: flex;
	align-items: center;
  justify-content: center;
	text-align: center;
	font-weight: bold;
	position: absolute;
	z-index: -1;
	right: 0;
}
.goods-lineup__list{
	display: flex;
	padding-top: 46px;
	margin-bottom: 8px;
}
.goods-lineup__list li:last-child{
	padding-top: 52px;
}
.goods-lineup__note{
	text-align: center;
	line-height: 1.2;
}
.goods-lineup__note span{
	font-size: 0.75em;
}
#goods .howto .acc__btn {
	background-color: var(--primary02-color);
}
#goods .acc__btn span::before, #goods .acc__btn span::after {
	background-color: var(--primary02-color);
}
.step__list--txt.txt02{
	font-weight: bold;
	font-size: 20px;
	color: var(--accent-color);
	text-align: center;
}
.exchange-details{
	padding: 14px;
	border: 1px solid #ffff;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.exchange-details__item dt{
	background-color: #fff;
	font-weight: bold;
	text-align: center;
	color: var(--sub-text-color);
	padding: 2px;
	margin-bottom: 4px;
}
.exchange-details__item dd .txt01{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
/* .place__list--item:not(:last-child){
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
} */
.exchange-place__list--item>p{
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}
.place__list--date{
	text-align: center;
	font-weight: bold;
	margin-bottom: 6px;
}
.place__list--detail{
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__lead {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 16px;
}
.goods-lineup__txt {
	width: 150px;
	height: 150px;
	font-size: 18px;
}
.goods-lineup__list{
	justify-content: center;
	padding-top: 16px;
}
.goods-lineup__list li{max-width: 200px;}
.exchange-details {
	padding: 20px;
	gap: 24px;
}
.exchange-details__item dd .txt01 {font-size: 18px;}
.place__list--item:not(:last-child) {
	padding-bottom: 16px;
	margin-bottom: 16px;
}
}


/* ------------------------------------------------------------
#info
------------------------------------------------------------ */
#info{
	background: url(../img/bg02.png),var(--accent-color);
	padding-bottom: 32px;
	color: var(--sub-text-color);
}
#info h2{
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 16px;
}
.info__lead{
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 16px;
}
.bnr__box{
	background-color: #000000;
	max-width: 400px;
	margin: 0 auto;
}
.bnr__box img{
	transition: all .5s;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#info h2 {font-size: 28px;}
.info__lead {font-size: 18px;}
.bnr__box img:hover {
	opacity: 0.5;
}
}

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





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

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

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

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

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

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

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

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



