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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #000000;
	--primary-color: #244C6E;
	--bg-color: #FFFFFF;
	--red-color: #EE0000;
	--accent-color: #DB5508;
	--bigshot-font: "Bigshot One", serif;
}
.main__wrap{
	padding-top: 66px;
	background-color: var(--bg-color);
	color: var(--text-color);
	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;
}
.bigshot-one-regular {
  font-family: "Bigshot One", serif;
  font-weight: 400;
  font-style: normal;
}
.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;
	color: var(--text-color);
}

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

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.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__fadeIn-late{
	opacity: 0; /* 最初は非表示 */
	transition: opacity 1s; 
}
/* フェードイン(スクロールした後) */
.js__fadeIn-late.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transition-delay: .8s; /* フェード開始を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%);
	}
}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: var(--primary-color);
	border: 1px solid #000;
  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(--primary-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{
	margin-top: 16px;
}

/* 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-image: url(../img/bg-stripeC.png);
		border: 2px solid #000000;
		padding: 16px;
		margin-bottom: 8px;
	}
	.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
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}
/* ------------------------------------------------------------
#共通
------------------------------------------------------------ */
.period{
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 6px;
	background-color: #B3B3B3;
	margin-bottom: 24px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.period dt{
	font-weight: bold;
	font-size: 15px;
}
.period dd{
	font-size: 18px;
}
.period dd span{
	font-size: 1.25em;
}
.main-bg{
	background-image: url(../img/bg02.jpg);
	padding: 16px 0;
	overflow: hidden;
}
.sec__wrap{
	padding: 16px 0;
}
.sec__head--group{
	position: relative;
	z-index: 1;
	width: fit-content;
	margin: 0 auto;
}
.ink-green,.ink-purple{
	position: absolute;
	z-index: -1;
}
.ink-green{
	width: 120px;
	transform: rotate(123deg);
	position: absolute;
}
.ink-purple{
	width: 146px;
	transform: rotate(136deg);
}
.sec-head{
	max-width: 450px;
	margin: 0 auto 16px;
}
.sec__head--group h2{
	max-width: 450px;
	margin: 0 auto 16px;
}
.howto .acc__btn{
	border-radius: 0;
	width: 100%;
	text-align: center;
	padding: 6px;
}
.howto .acc__btn span{
	right: 15px;
}
.howto .acc__body{
	border: 1px solid #000;
	padding: 16px 14px;
	background-image: url(../img/bg03.jpg);
	margin-top: 12px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.step__list--head{
	background-color: #fff;
	text-align: center;
	font-family: var(--bigshot-font);
	color: var(--primary-color);
	padding: 2px;
	margin-bottom: 8px;
}
.step__list--item{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.step__list--head span{
	font-size: 1.2em;
}
.step__list--txt{
	font-size: 14px;
}

.step__list--link{
	font-weight: bold;
	text-decoration: underline;
	color: var(--accent-color);
}
.step__list--img{
	width: 140px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {padding: 32px 0;}
	.period{
		max-width: 650px;
		margin: 0 auto 32px;
		border: 2px solid #000;
	}
	.period dt{font-size: 18px;}
	.period dd{font-size: 20px;}
	.main-bg {padding: 48px 0 32px;}
	.howto .acc__body {padding: 32px;}
	.step__list--head {
    padding: 4px;
		font-size: 18px;
    margin-bottom: 12px;
	}
	.step__list--item {gap: 20px;}
	.ink-green {width: 170px;}
	.ink-purple {width: 175px;}
	.sec__head--group h2 {margin: 0 auto 24px;}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	background-image: url(../img/bg01.jpg);
	padding: 20px 0 32px;
	overflow: hidden;
}
.intro__lead--box{
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}
.ink-orange,.ink-yellow{
	position: absolute;
	z-index: -1;
}
.ink-orange{
	width: 203px;
	top: -55px;
	right: -85px;
}
.ink-yellow{
	width: 194px;
	transform: rotate(165deg);
	left: -75px;
	bottom: -100px;
}
#intro .period{
	background-image: url(../img/bg-stripeC.png);
}
.intro__lead{
	line-height: 1.7;
	padding-bottom: 32px;
}
.intro__lead span{
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.15em;
}
.anc-btn__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}
.anc-btn__list li{
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap{padding: 40px 0 64px;}
	.anc-btn__list{
		flex-direction: row;
		max-width: 1000px;
		margin: 0 auto;
	}
	.anc-btn__list li{
		transition: all .5s;
		box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
	}
	.anc-btn__list li:hover{
		transform: translateY(3px);
		box-shadow: none;
	}
	.intro__lead{
		font-size: 18px;
		text-align: center;
		line-height: 2;
	}
	.ink-orange {
		width: 240px;
		top: -10px;
		right: 35px;
		transform: rotate(300deg);
}
.ink-yellow {
	width: 240px;
	left: 50px;
	bottom: -70px;
}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
#voice{margin-bottom: 24px;}
#voice .ink-green{
	right: -42px;
	top: 2px;
}
#voice .ink-purple{
	left: -43px;
	bottom: -51px;
}
#voice .period{
	background-image: url(../img/bg-stripeB.png);
	position: relative;
	z-index: 1;
}
#voice .period dd{font-size: 14px;}
.voice-sche__block{
	border: 1px solid #000;
	padding: 14px;
	background-image: url(../img/bg03.jpg);
	margin-bottom: 24px;
}
.voice-sche__head{
	text-align: center;
	font-weight: bold;
	margin-bottom: 8px;
	color: var(--primary-color);
}
.voice-sche__list{
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.voice-sche__list li{
	font-weight: bold;
	font-size: 15px;
}
.voice-sche__list li:not(:last-child){
	padding-bottom: 6px;
	border-bottom: 1px solid #000;
}
.voice-sche__list li span{
	font-family: var(--bigshot-font);
	font-size: 22px;
	color: var(--primary-color);
	margin-right: 15px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#voice .period dt {font-size: 16px;}
	#voice .period dd {font-size: 18px;}
	.voice-sche__block {
    padding: 20px 40px;
		margin: 0 auto 32px;
	}
	.voice-sche__list li {font-size: 16px;}
	.voice-sche__list li span {
    font-size: 26px;
    margin-right: 24px;}
		#voice .ink-green {
			right: -85px;
			top: -27px;
			transform: rotate(330deg);
	}
	#voice .ink-purple {
    left: -85px;
    bottom: -60px;
}
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
#goods .ink-purple{
	transform: rotate(-42deg);
	right: -64px;
	top: -27px;
}
#goods .ink-green{
	left: -31px;
	bottom: -40px;
}
.sec__lead{
	line-height: 1.7;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}
.goods__block{margin-bottom: 24px;}
.goods__block h3{
	max-width: 450px;
	margin: 0 auto 16px;
}
.goods__list--group{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.goods__list{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}
.list-bottom .goods__list--item:not(:last-child){
	width: calc( ( 100% - 15px ) / 2 );
}
.list-bottom .goods__list--img{
	max-width: 165px;
	margin: 0 auto;
}
.goods__name--group{
	width: fit-content;
	margin: -8px auto 0;
	position: relative;
	z-index: 1;
}
.balloon-goods {
	width: 95px;
	position: absolute;
	right: -27px;
	bottom:40px;
}
.last--item .balloon-goods{
	right: -82px;
	bottom: 21px;
}
.goods__name{
	width: fit-content;
	text-align: center;
	background-color: var(--accent-color);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 16px;
	border: 1px solid #000;
	padding: 1px 10px;
	margin: 0 auto;
}
.goods__name span{
	font-size: 0.8em;
}
.goods__name--txt{
	width: fit-content;
	margin: 0 auto;
	font-size: 14px;
	font-weight: bold;
}
.goods__name--note{
	font-size: 12px;
	text-align: center;
}
.step__list--txtimg{
	max-width: 400px;
	margin: 0 auto;
}
.exchange-info__block{
	border: 1px solid #000;
	padding: 14px;
	background-image: url(../img/bg03.jpg);
}
.exchange-info{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.exchange-info__item dt{
	background-color: var(--accent-color);
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 3px;
	margin-bottom: 4px;
}
.exchange-info__item--cont{margin-bottom: 8px;}
.exchange-info__item--cont li{
	font-size: 14px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#goods .ink-purple {
		transform: rotate(310deg);
		right: -84px;
		top: -30px;
}
#goods .ink-green {
	left: -76px;
	bottom: -71px;
}
	.sec__lead{
		font-size: 18px;
		margin-bottom: 32px;
	}
	.goods__list--group {gap: 20px;}
	.goods__list{
		flex-wrap: nowrap;
		gap: 20px;
	}
	.list-top .goods__list--item{
		max-width: 420px;
		margin: 0 auto;
	}

	.list-bottom .goods__list--item:not(:last-child){
		width: calc( ( 100% - 40px ) / 3 );
	}
	.list-bottom .goods__list--item.last--item{
		width: calc( ( 100% - 40px ) / 3 );
	}

	.list-bottom .goods__list--img{
		max-width: 230px;
	}
	.container.wide{
		max-width: 800px;
	}
	.goods__block {margin-bottom: 32px;}
	.goods__name {
    font-size: 16px;
    border-radius: 20px;
    padding: 2px 16px;
	}


	.exchange-info__block {padding: 20px;}
	.balloon-goods {
    width: 130px;
    right: -100px;
    bottom: 36px;
}
.last--item .balloon-goods{
	right: -120px;
	bottom: 10px;
}
.exchange-info__item dt {
	font-size: 16px;
	padding: 3px;
	margin-bottom: 4px;
}
.exchange-info__item dd>p{font-size: 18px;}
.exchange-info__item--cont li {font-size: 16px;}
}

/* ------------------------------------------------------------
#info
------------------------------------------------------------ */
#info.sec__wrap{
	padding: 32px 0;
	background-image: url(../img/bg-stripeA.png);
	color: #fff;
}
#info h2{
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 12px;
}
.info__lead{
	text-align: center;
	font-weight: bold;
	margin-bottom: 12px;
}
.bnr-official img{
	width: 235px;
	margin: 0 auto;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#info.sec__wrap {padding: 40px 0;}
	#info h2 {
    font-size: 25px;
    margin-bottom: 18px;
}
.info__lead {margin-bottom: 16px;}
.bnr-official img {
	width: 300px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
	transition: all .5s;
}
.bnr-official img:hover{
	transform: translateY(3px);
	box-shadow: none;
}
}





/* ------------------------------------------------------------
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(--accent-color);
	font-family: var(--bigshot-font);
	font-weight: bold;
	text-align: center;
	padding: 6px;
	border-radius: 80px;
	font-size: 28px;
}
.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: 90%;
	height: 70%;
	display: flex;
	align-items: center;
  justify-content: center;
}
.cs.event-end-block{
	width: 100%;
	height: 100%;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
	.cs{border-radius: 0;}
}



