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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
/* html {font-size: 62.5%;} */
:root {
	--text-color: #000000;
	--primary-color: #344963;
	--accent-color: #ED6D1F;
	--sub-color: #6A7468;
	--bg-color: #EEEFEC;
	--border-color:#C7D0CD;
	--red-color: #E30000;
	--grad-color:linear-gradient(90deg,#E24D01 0%,#F57710 100% );
	--grad02-color:linear-gradient(90deg,#F57710 0%,#E24D01 100% );
	--roboto: "Roboto", sans-serif;
}
.main__wrap{
	padding-top: 66px;
	background-color: #fff;
	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;
}
.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: 700px;
}
.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;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.container{
		width: 100%;
	}
	.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__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
}
.is-delayed01{
	transition-delay: .4s;
}
.is-delayed02 {
  transition-delay: .6s;
}
.is-delayed03 {
  transition-delay: .8s;
}


.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-delayed {
  animation-delay: 0.4s;
}



/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: var(--primary-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(--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;
	/* background-color: #fff; */
	/* 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__outer{
		max-width: 550px;
		margin: 0 auto 8px;
	}
	.voice-btn__pc{
		background: url(../img/bg_VT.jpg);
		padding: 20px;
		border-radius: 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
------------------------------------------------------------ */
.mv__box{
	background: url(../img/sec-obj05.png),var(--grad-color);
	background-repeat: no-repeat,no-repeat;
	background-position: bottom right;
	background-size: 32px,cover;
	display: flex;
	flex-direction: column;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background: linear-gradient(90deg, #E24D01 0%, #E24D01 50%, #ffffff 50%, #ffffff 100%);
	}
	.mv__box{
		flex-direction: row-reverse;
		align-items: center;
		background: url(../img/mv-bg.png);
		background-repeat: no-repeat;
		background-size: contain;
		max-width: 860px;
		margin: 0 auto;
		padding: 32px 0;
		gap: 30px;
	}
	.mv__ttl{
		max-width: 257px;
		flex-shrink: 0;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	padding: 32px 0 40px;
	background-image: url(../img/sec-obj01.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 48px;
}
.intro__lead{
	font-size: 16px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap{
		padding: 64px;
		background-size: 78px;
	}
	.intro__lead{
		font-size: 18px;
		text-align: center;
		line-height: 1.8;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding: 40px 56px;
	background: url(../img/sec-obj02.png),url(../img/sec-obj03.png),url(../img/bg01.png);
	background-repeat: no-repeat,no-repeat,repeat;
	background-position: left top,right bottom;
	background-size: 48px,48px,auto;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 100% - 20px ) / 2 );
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap{
		padding: 40px 80px;
		background-size: 78px,78px,auto;
	}
	.menu__list{
		gap: 30px;
	}
	.menu__list li{
		width: calc( ( 100% - 90px ) / 4 );
		max-width: 130px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
#Talk sec__wrap
------------------------------------------------------------ */
.sec__wrap{
	padding: 56px 0;
	background: url(../img/sec-obj04.png),url(../img/sec-obj05.png),var(--bg-color);
	background-repeat: no-repeat,no-repeat;
	background-position: left top,right bottom;
	background-size: 48px,48px,auto;
}
.sec__head{
	padding: 0 14px;
	margin-bottom: 24px;
	max-width: 345px;
}
.contents__menu{
	margin-bottom: 24px;
}
.contents__menu h3{
	background-image: url(../img/heading-plate01.png);
	background-repeat: no-repeat;
	background-size: contain;
	color: #fff;
	font-family:var(--roboto);
	font-weight: bold;
	font-size: 16px;
	padding: 3px 0 4px 15px;
	margin-bottom: 8px;
}
.contents__menu--txt{
	margin-bottom: 16px;
}
.sche__list{
	background: url(../img/frame-obj01.svg),#fff;
	background-position: bottom right;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 14px;
}
.sche__list--item:not(:last-child){ 
	padding-bottom: 6px;
	border-bottom: 1px solid var(--border-color);
}
.sche__list--item{
	display: flex;
	align-items: center;
}
.sche__list--number{
	font-family:var(--roboto);
	font-weight: 900;
	color: var(--sub-color);
	font-size: 20px;
	margin-right: 12px;
	line-height: 1;
}
.sche__list--date{
	font-family: var(--roboto);
	font-weight: bold;
	line-height: 1;
}
.sche__list--date span{
	font-size: 1.4em;
}
.sche__list--arrow{
	display: inline-block;
  margin: 0 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{
		padding: 80px 0;
		background-size: 78px,78px,auto;
	}
	.sec__head{
		padding: 0;
		margin-bottom: 32px;
		max-width: 570px;
	}
	.sec__wrap--inner{
		max-width: 700px;
		margin: 0 auto;
	}
	.contents__menu{margin-bottom: 32px;}
	.contents__menu h3 {
    font-size: 20px;
    padding: 5px 0 5px 15px;
}
.sche__list--number {
	font-size: 24px;
	margin-right: 20px;
}
.sche__list--date {
	font-size: 18px;
}
.sche__list--arrow {
	width: 20px;
}
}

/* ------------------------------------------------------------
#Wallpaper
------------------------------------------------------------ */
#Wallpaper.sec__wrap{
	background: url(../img/sec-obj06.png),url(../img/sec-obj03.png),#fff;
	background-repeat: no-repeat,no-repeat;
	background-position: left top,right bottom;
	background-size: 48px,48px,auto;
}
.sec__date{
	background: url(../img/date-obj.svg),var(--grad02-color);
	background-repeat: no-repeat,no-repeat;
	background-size: auto;
	background-position: right -35px bottom,center center;
	font-family: var(--roboto);
	font-weight: bold;
	line-height: 1;
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin-bottom: 24px;
	padding: 2px;
}
.sec__date span{
	font-size: 1.5em;
}
.sec__date--arrow{
	display: inline-block;
  margin: 0 8px;
}
.attention__box{
	border: 1px solid var(--red-color);
	color: var(--red-color);
	text-align: center;
	padding: 8px;
	margin-bottom: 24px;
	background-color: #fff;
}
.sec__lead--group{
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}
.sec__lead{
	font-size: 16px;
}
.sec__lead span{
	font-weight: bold;
	color: var(--accent-color);
	font-size: 1.06em;
}
.sec__lead span.smaller{
	font-size: 0.75em;
}
.note__list--box{
	border: 1px solid var(--border-color);
	padding: 16px 14px;
	margin-bottom: 24px;
}
.note__list--head{
	text-align: center;
	margin-bottom: 8px;
	font-weight: 500;
}

.howto .acc__btn{
	border-radius: 0;
	width: 100%;
	text-align: center;
}
.howto .acc__body{
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin-top: 0;
	padding: 16px 14px;
	background-color: #fff;
}
.howto__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.howto__list--item{
	padding-bottom: 24px;
}
.howto__list--item h3{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 3px;
	padding-top: 84px;
	position: relative;
	margin-bottom: 16px;
}
.howto__list--item h3::before{
	display: block;
	content: "";
	width: 40px;
	height: 72px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}

.howto__list--item.list01 h3::before{
	background-image: url(../img/icon-phone01.png);
}
.howto__list--item.list02 h3::before{
	background-image: url(../img/icon-phone02.png);
}

/* splide */
.splide {
  position: relative;  /* ここで基準にする */
  margin-top: 8px;
}

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

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

/* スライド自体をフレックスコンテナに */
.slide__box {
  display: flex;             /* フレックス化 */
  flex-direction: column;    /* 上下方向 */
  justify-content: center;   /* 縦中央 */
  align-items: center;       /* 横中央 */
  text-align: center;        /* テキスト中央寄せ */
	background-color: var(--bg-color);
	border-radius: 8px;
	padding: 20px;
}
.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 93%;
    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 16px;
	line-height: 1.2;
	margin-bottom: 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;
}
.slide__box--inner .icon{
	width: 36px;
}


/* PC用設定 */
@media screen and (min-width:751px) { 
	#Wallpaper.sec__wrap{
		background-size: 78px,78px,auto;
	}
	.sec__date{
		font-size: 18px;
		padding: 4px;
		margin-bottom: 32px;
	}
	.sec__date--arrow {width: 26px;}
	.sec__lead{
		font-size: 16px;
		text-align: center;
	}
	.attention__box{margin-bottom: 32px;}
	.img_wallpaper{
		max-width: 400px;
		margin: 0 auto;
	}
	.note__list--box{
		padding: 24px;
	}
	.howto .acc__btn {
    font-size: 16px;
		padding: 10px;
}
.howto .acc__body {padding: 32px;}
.splide__track {width: 85%;}
.howto__list--item h3 {
	font-size: 20px;
}
.img-btn_VT01 {width: 240px;}
.slide__box--inner.flex {
	gap: 25px;
}
}

/* ------------------------------------------------------------
#Goods
------------------------------------------------------------ */
#Goods.sec__wrap{
	background: url(../img/sec-obj02.png),url(../img/sec-obj07.png),var(--bg-color);
	background-repeat: no-repeat,no-repeat;
	background-position: left top,right bottom;
	background-size: 48px,48px,auto;
}
.goods__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.goods__list--item:not(:last-child){
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-color);
}
.goods__list--item h3{
	display: flex;
}
.prize__icon{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--grad-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}
.prize__icon span{
	font-weight: bold;
	color: #fff;
	font-size: 16px;
}
.prize__name{
	display: block;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.3;
	padding-left: 16px;
}

.goods-img__box{
	position: relative;
}
.goods-img__box img{
	max-width: 350px;
	margin: 0 auto;
}
.number__wp{
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--sub-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	bottom: 0;
}
.number__wp span{
	font-weight: bold;
	color: #fff;
}
.number__wp .larger{
	display: block;
	font-size: 1.4em;
	text-align: center;
	line-height: 1;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#Goods.sec__wrap{
		background-size: 78px,78px,auto;
	}
	.goods__list{
		max-width: 500px;
		gap: 32px;
		margin: 0 auto 32px;
	}
	.goods__list--item h3 {
    justify-content: center;
		align-items: center;
}
.prize__icon {
	width: 80px;
	height: 80px;
}
.prize__name{
	text-align: center;
	font-size: 20px;
}
.prize__icon span {
	font-size: 20px;
}
.number__wp {
	width: 72px;
	height: 72px;
	font-size: 16px;
}

}


/* ------------------------------------------------------------
#Info
------------------------------------------------------------ */
#Info.sec__wrap{
	background: url(../img/sec-obj06.png),url(../img/sec-obj07.png),#969D95;
	background-repeat: no-repeat,no-repeat;
	background-position: left top,right bottom;
	background-size: 48px,48px,auto;
}
.info__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.info__list--item h3{
	background-image: url(../img/heading-plate02.png);
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    font-family: var(--roboto);
    font-weight: bold;
    font-size: 20px;
    padding: 3px 0 3px 20px;
    margin-bottom: 16px;
}
.info__list--cont{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.info__txt{
	font-weight: bold;
	font-size: 16px;
}
.info__txt .larger{
	display: block;
	font-size: 1.75em;
}
.info__img{
	max-width: 400px;
	margin: 0 auto;
}
.link-btn{
	display: block;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	position: relative;
	padding: 14px;
}
.link-btn::after{
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background: url(../img/link-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transition: all .5s;
}
.link-btn-bn{
	display: block;
	width: fit-content;
	background: #000;
	width: 76%;
	max-width: 300px;
	margin: 0 auto;
	transition: all .5s ease;
}


/* PC用設定 */
@media screen and (min-width:751px) { 
	#Info.sec__wrap{
		background-size: 78px,78px,auto;
	}
	#Info .sec__head{
		max-width: 400px;
	}
	.info__list {gap: 40px;}
	.info__list--item h3 {
    font-size: 24px;
    padding: 5px 0 5px 24px;
}
.info__list--cont {gap: 24px;}
.info__txt {
	font-size: 18px;
}
.link-btn {
	max-width: 320px;
	margin: 0 auto;
	font-size: 15px;
}
.link-btn:hover::after{
	right: 5px;
}
.img_artist.info__img {
	max-width: 560px;
}

.link-btn-bn:hover .img-btn_official{
	opacity: .3;
}
}

/* ------------------------------------------------------------
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(107, 43, 4, 0.8);
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-family: var(--roboto);
	font-size: 24px;
	border-radius: 40px;
}
.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%;
	} */
}



