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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #fff;
	--sub-text-color:#000;
	--primary-color: #D9C48D;
	--sub-color: #3A4179;
	--accent-color: #C5CEE3;
	--red-color: #EE0000;
	--bg-color: #0D1555;
	--bg02-color: #3E4477;
	--font-aboreto: "Aboreto", system-ui;
	--font-notosans:"Noto Sans JP", sans-serif;
}

.main__wrap{
	padding-top: 66px;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:"Zen Kaku Gothic New", "游ゴシック体", 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: 800px;
}
.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;}
.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;}

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

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

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

.pdbS{padding-bottom: 8px;}
.pdbM{padding-bottom: 16px;}
.pdbL{padding-bottom: 24px;}

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

.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}

/* 旧字対策 */
.ff-noto{
	font-family: var(--font-notosans);
}
/* 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;}
	.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;}

	.contents__inner{
		max-width: 600px;
		margin: 0 auto;
	}
}

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


/* ブラー*/
.js__blurAnime{opacity: 0; /* 最初は非表示 */}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		opacity: 0;
	}

	to {
		filter: blur(0);
		opacity: 1;
	}
}

.is-transition-delayed01{transition-delay: .2s;}
.is-transition-delayed02 {transition-delay: .4s;}
.is-transition-delayed03 {transition-delay: .6s;}
.is-animation-delayed {animation-delay: .2s;}


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

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__outer{
		padding: 12px;
		border: 1px solid #fff;
		border-radius: 24px;
	}
	.voice-btn__pc{
		background: linear-gradient(90deg,rgba(149, 74, 207, 1) 0%, rgba(92, 101, 167, 1) 50%, rgba(51, 152, 88, 1) 100%);;
		padding: 16px;
		border-radius: 16px;
	}
	.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__block{
	padding-bottom: 32px;
}
.mv__img--group{
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
}
.mv__block h1{
	width: 93%;
	max-width: 470px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block {
    padding-bottom: 48px;
}
	.mv__img--group{
		flex-direction: row;
		margin-bottom: 32px;
	}
	.mv__img{
		width: 50%;
	}
}

/* MVアニメーション */
/* スライド01 左から右、上から下 */
.js__slide01{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide01.is-inview{
	animation-name: animeSlide01;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes animeSlide01 {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.js__slide01{
		clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	}
	@keyframes animeSlide01 {
		0% {
			/* 全ての点を上端(y=0%)に集める */
			clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
		}
		100% {
			/* 下の2点だけを 100% まで下ろす */
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		}
	}
}

/* スライド02　右から左、下から上*/
.js__slide02{
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: all .8s;
}
.js__slide02.is-inview{
	animation-name: animeSlide02;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes animeSlide02 {
	0% {
    /* 開始：右端に1本の線として存在 */
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    /* 終了：左端まで広がる */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.js__slide02{
		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	}
	@keyframes animeSlide02 {
		0% {
			/* 全ての点を下端(y=100%)に集める */
			clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
		}
		100% {
			/* 上の2点だけを 0% まで引き上げる */
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		}
	}
}

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

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding-bottom: 24px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 100% - 16px ) / 2 );
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap {padding-bottom: 32px;}
	.menu__list{gap: 24px;}
	.menu__list li{
		width: calc( ( 100% - 48px ) / 4 );
		max-width: 165px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
#Movie
------------------------------------------------------------ */
.sec__wrap{
	padding: 24px 0;
}
.sec__head--group{margin-bottom: 24px;}
.sec__head{
	max-width: 420px;
	margin: 0 auto 16px;
}
.sec__date{
	color: var(--primary-color);
	font-family: var(--font-aboreto);
	padding: 6px;
	border-top: 1px solid var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
	font-size: 18px;
	text-align: center;
}
.sec__date span{
	font-size: 1.25em;
}
.sec__lead--group{
	margin-bottom: 24px;
}
.sec__lead{
	text-align: center;
	font-size: 16px;
}
.cont__list{
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}
.cont__head--group{
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cont__head--sub{
font-weight: bold;
color: var(--sub-text-color);
background-color: var(--primary-color);
width: fit-content;
margin: 0 auto;
border-radius: 16px;
padding: 2px 16px;
}
.cont__head{
	font-family: var(--font-aboreto);
	color: var(--primary-color);
	font-size: 28px;
	text-align: center;
}
.cont-img__block{
	max-width: 450px;
	margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap { padding: 32px 0;}
	.sec__head--group {margin-bottom: 32px;}
	.sec__head {margin: 0 auto 24px;}
	.sec__date {
    padding: 12px 48px;
    font-size: 20px;
		width: fit-content;
		margin: 0 auto;
}
.sec__lead--group{margin-bottom: 32px;}
.sec__lead {
	font-size: 18px;
	line-height: 1.7;
}
.cont__list {margin-bottom: 40px;}

}

/* ==============キャスト枠============== */
.cast__block--list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cast__block{
	border: 1px solid #6D7586;
	padding: 12px 8px 8px;
	position: relative;
}
.cast__block--label{
	background-color: var(--bg-color);
	font-family:var(--font-aboreto);
	color: #6D7586;
	font-weight: bold;
	letter-spacing: .1em;
	padding: 2px 10px;
	line-height: 1;
	width: fit-content;
	position: absolute;
	top: -10px;
	left: 8px;
}
.reverse .cast__block--label{
	left: auto;
	right: 8px;
}
.cast__block--flex{
	display: flex;
	gap: 5px;
}
.cast__block--flex.reverse{
	flex-direction: row-reverse;
}
.reverse .cast-name{
	background: linear-gradient(to left, #6D7586, transparent);
	text-align: right;
}
.cast-img__list{
	display: flex;
	gap: 5px;
	max-width: 142px;
}
.cast-img__list li img{
	width: 44px;
	background-color: var(--bg02-color);
}
.cast-name__list{
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex-grow: 1;
}
.cast-name{
	font-weight: bold;
	font-size: 12px;
	padding: 4px 6px;
	background: linear-gradient(to right, #6D7586, transparent);
}
.outbound .cast-img__list{
	max-width: 191px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.cast__block {
    padding: 12px;
		width: 50%;
}
.cast__block--flex{
	gap: 8px;
}
	.cast__block--list{
		flex-direction: row;
		gap: 24px;
		justify-content: center;
	}
	.cast__block--flex.reverse{
		flex-direction: row;
	}
	.reverse .cast-name{
		background: linear-gradient(to right, #6D7586, transparent);
		text-align: left;
	}
	.cast-img__list {
    gap: 8px;
    max-width: 166px;
	}
.cast-img__list li img {width: 50px;}
.outbound .cast-img__list {
	max-width: 224px;
}
.cast-name__list {gap: 8px;}
.cast-name {
	font-size: 14px;
	padding: 6px 8px;
}
.reverse .cast__block--label{
	left: 8px;
	right: auto;
}
}

/* アニメーション */
.cast__block--flex .cast-img__list li {
	opacity: 0;
	transform: translateY(-10px);
}
.cast__block--flex.is-inview .cast-img__list li:nth-child(1) {animation: fadeInCast 1s ease 0s forwards;}
.cast__block--flex.is-inview .cast-img__list li:nth-child(2) {animation: fadeInCast 1s ease .3s forwards;}
.cast__block--flex.is-inview .cast-img__list li:nth-child(3) {animation: fadeInCast 1s ease .6s forwards;}
.cast__block--flex.is-inview .cast-img__list li:nth-child(4) {animation: fadeInCast 1s ease .9s forwards;}
@keyframes fadeInCast {
	0% {opacity: 0;
	transform: translateY(-10px);}
	100% {opacity: 1;
	transform: translateY(0);}
}

.cast__block--flex .cast-name__list li {
	opacity: 0;
	transform: translateX(10px);
}
.reverse .cast__block--flex .cast-name__list li {
	transform: translateX(-10px);
}
.cast__block--flex.is-inview .cast-name:nth-child(1) {animation: fadeInName 1s ease 0s forwards;}
.cast__block--flex.is-inview .cast-name:nth-child(2) {animation: fadeInName 1s ease .3s forwards;}
.cast__block--flex.is-inview .cast-name:nth-child(3) {animation: fadeInName 1s ease .6s forwards;}
.cast__block--flex.is-inview .cast-name:nth-child(4) {animation: fadeInName 1s ease .9s forwards;}
.reverse .cast__block--flex.is-inview .cast-name:nth-child(1) {animation: fadeInName2 1s ease 0s forwards;}
.reverse .cast__block--flex.is-inview .cast-name:nth-child(2) {animation: fadeInName2 1s ease .3s forwards;}
.reverse .cast__block--flex.is-inview .cast-name:nth-child(3) {animation: fadeInName2 1s ease .6s forwards;}
.reverse .cast__block--flex.is-inview .cast-name:nth-child(4) {animation: fadeInName2 1s ease .9s forwards;}
@keyframes fadeInName {
	0% {opacity: 0;
	transform: translateX(10px);}
	100% {opacity: 1;
	transform: translateX(0);}
}
@keyframes fadeInName2 {
	0% {opacity: 0;
	transform: translateX(-10px);}
	100% {opacity: 1;
	transform: translateX(0);}
}

@media(min-width:751px){
	.reverse .cast__block--flex.is-inview .cast-name:nth-child(1) {animation: fadeInName 1s ease 0s forwards;}
	.reverse .cast__block--flex.is-inview .cast-name:nth-child(2) {animation: fadeInName 1s ease .3s forwards;}
	.reverse .cast__block--flex.is-inview .cast-name:nth-child(3) {animation: fadeInName 1s ease .6s forwards;}
	.reverse .cast__block--flex.is-inview .cast-name:nth-child(4) {animation: fadeInName 1s ease .9s forwards;}
	
}

/* ==============キャスト枠ここまで============== */

/* ----参加方法枠----- */
.howto__box{
	border: 1px solid var(--primary-color);
	padding: 16px 24px 24px;
	background: url(../img/obj01-corner-LT.svg),url(../img/obj01-corner-RT.svg),url(../img/obj01-corner-LB.svg),url(../img/obj01-corner-RB.svg);
	background-repeat: no-repeat;
	background-position: top 4px left 4px,top 4px right 4px,bottom 4px left 4px,bottom 4px right 4px;
	margin-bottom: 24px;
}
.howto__head{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}
.step__list--item:not(:last-child){
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: dotted 1px var(--primary-color);
}
.step__list--item{
	display: flex;
	gap: 12px;
}
.step__list--num{
	font-family: var(--font-aboreto);
	color: var(--primary-color);
	font-size: 18px;
	position: relative;
	text-align: center;
	width: 26%;
	flex-shrink: 0;
}
.step__list--num{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.step__list--num::before,.step__list--num::after{
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	background-image: url(../img/obj-star.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.step__list--num::before{
	left: 0;
}
.step__list--num::after{
	right: 0;
}
.step__list--txt{
	font-weight: bold;
}

.bg-box{
	background-color: var(--bg02-color);
	padding: 14px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.howto__box{
		margin-bottom: 32px;
		background-size: 50px;
		padding: 16px 32px 32px;
	}
	.howto__head {
		font-size: 18px;
		margin-bottom: 16px;
	}
	.step__list--num {
		font-size: 20px;
		width: 18%;
	}
	.step__list--txt {
		font-size: 16px;
	}
	.step__list--item {
		gap: 20px;
	}
}
/* ----参加方法枠ここまで----- */

/* ------------------------------------------------------------
#Photo
------------------------------------------------------------ */
.cont__list.list02{
	gap: 16px;
	margin-bottom: 24px;
	position: relative;
}
.list02 .cont__head{
	font-size: 22px;
	margin-bottom: 8px;
}
.cont__list--wp{
	background-color: var(--primary-color);
	color: var(--sub-text-color);
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.wp-position01{
	position: absolute;
	right: -8px;
	bottom: -10px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
.cont__list.list02 {
	gap: 24px;
	max-width: 450px;
	margin: 0 auto 32px;
}
.cont__list--wp{
	font-size: 16px;
	width: 72px;
	height: 72px;
}
.wp-position01{
	bottom:0px;
}

}

/* ------------------------------------------------------------
#Goods
------------------------------------------------------------ */
.sec__lead .txt-color{
	color: #EF6908;
	font-weight: bold;
}
.pdf-btn{
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: var(--sub-color);
	background-color: #fff;
	border: 3px solid var(--accent-color);
	border-radius: 32px;
	padding: 8px;
	width: 200px;
	margin: 0 auto;
}
.pdf-btn span{
	position: relative;
}
.pdf-btn span::after{
	display: block;
	content: "";
	width: 13px;
	height: 15px;
	background-image: url(../img/icon-pdf.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -20px;
}
.position02{
	position: relative;
}
.wp-position02{
	position: absolute;
	top: 32px;
	right: 0;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.pdf-btn{
		transition: all .5s;
	}
	.pdf-btn:hover{
		opacity: .5;
	}
}


/* ------------------------------------------------------------
#Event
------------------------------------------------------------ */
.event__wrap{
	background: url(../img/bg.jpg);
	padding: 32px 0;
	color: #000;
}
.event__wrap--head{
	width: 76%;
	max-width: 360px;
	margin: 0 auto 24px;
}
.event__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.event__list--item{
	border: 1px solid var(--sub-color);
	padding: 14px;
	background: url(../img/obj02-corner-LT.svg),url(../img/obj02-corner-RT.svg),url(../img/obj02-corner-LB.svg),url(../img/obj02-corner-RB.svg);
	background-repeat: no-repeat;
	background-position: top 4px left 4px,top 4px right 4px,bottom 4px left 4px,bottom 4px right 4px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.event-info{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.event-info div{
	display: flex;
	gap: 8px;
}
.event-info dt{
	width: 19%;
	flex-shrink: 0;
}
.event-info dt span{
	display: block;
	font-size: 12px;
	color: #fff;
	background-color: var(--sub-color);
	font-weight: bold;
	text-align: center;
	border-radius: 2px;
	padding: 2px;
}
.event-info dd{
	color: var(--sub-text-color);
}
.event-link-btn{
	background-color: var(--sub-color);
	border: 3px solid var(--sub-color);
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	border-radius: 36px;
	max-width: 345px;
	margin: 0 auto;
	padding: 10px;
	color: #fff;
	display: block;
	transition: all .5s;
}
.img-logo{
	max-width: 320px;
	margin: 24px auto 0;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.event__wrap{
		padding: 64px 0;
	}
	.event__wrap--head {
    margin: 0 auto 32px;
}
.event__list {
	gap: 32px;
	margin-bottom: 32px;
}
	.event__list--item {
    padding: 20px;
   background-size: 60px;
}
.event-info div {
	gap: 12px;
}
.event-info dt span {
	font-size: 14px;
	padding: 4px;
}
.event-info dd {
	font-size: 16px;
}
.event-link-btn:hover{
	background-color: #fff;
	color: var(--sub-color);
}

}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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.9);
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-family: var(--font-aboreto);
	font-size: 20px;
	border-radius: 64px;
}
.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: 92%;
	height: 70%;
}
/* 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%;
	} */
}



