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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--primary-color: #E6C8FC;
	--accent-color: #BE9F76;
	--accent-red-color:#AD2655;
	--red-color: #D00000;
	--border-color: #9B9B9B;
	--font-Alice: "Alice", serif;
	--link-color:#2D7CF1;
}

/* 背景固定 */
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png),linear-gradient(90deg,#E5DBC6 0%,#E0C48B 100% );
	background-repeat: repeat-x,no-repeat;
	background-size: cover;
}

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

/* 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;}
}

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

/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(5px); /* 下にXXpxの位置から */
	transition: opacity .5s, 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.4s;
	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-transition-delayed04 {transition-delay: .8s;}

.is-animation-delayed {animation-delay: .4s;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
	margin-top: 10px;
}
.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%);}

/* 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__pc{
		background-image: url(../img/bg_VT.jpg);
		border: 2px solid #BE9F76;
		border-radius: 16px;
		padding: 24px;
	}
	.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: 18px;
		margin-bottom: 8px;
	}
	.voice-btn__txt .txt01 span{
		font-size: 0.8em;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block{
	width: 92%;
	margin: 0 auto;
	max-width: 900px;
	padding: 16px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mv__block h1{
	width: 235px;
	margin: 0 auto;
}
.KV-img{
	border-radius: 12px;
}
.date__box{
	padding: 10px 0;
	background-image: url(../img/sec-line-top.png),url(../img/sec-line-bottom.png);
	background-repeat: repeat-x;
	background-position: top center,bottom center;
	background-size: auto 10px;
}
.date{
	background-color: #FCFBF7;
	font-family: var(--font-Alice);
	font-size: 23px;
	text-align: center;
}
.date span{
	font-size: 1.3em;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		padding: 40px 0;
		flex-direction: row;
		align-items: center;
    justify-content: center;
		gap: 40px;
	}
	.mv__flex--left{
		width: 330px;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		gap: 36px;
	}
	/* .mv__flex--right{
		max-width: 500px;
	} */
	.mv__block h1{
		width: 100%;
	}
	.date{
		font-size: 25px;
		padding: 4px 0;
	}


}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	padding: 16px 0 20px;
}
.intro__lead{
	text-align: center;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap {
    padding: 16px 0 40px;
}
	.intro__lead{
		font-size: 18px;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding: 20px 0;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 100% - 6px ) / 3 );
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap{
		padding: 40px 0;
	}
	.menu__list{gap: 10px;}
	.menu__list li{
		width: calc( ( 100% - 40px ) / 5 );
		max-width: 130px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
#Talk
------------------------------------------------------------ */
.sec__wrap{
	padding: 25px 0;
}
.sec__bg{
	padding: 0 12px;
	background-image: url(../img/sec-line-left.png),url(../img/sec-line-right.png);
	background-repeat: repeat-y,repeat-y;
	background-size: 12px auto;
	background-position: left center,right center;
}
.sec__inner{
	background-color: #FCFBF7;
	border-top: 5px solid #233871;
	border-bottom: 5px solid #233871;
	padding: 32px 10px 20px;
	position: relative;
}
.sec__inner::before{
	content: "";
	display: block;
	width: 103px;
	height: 43px;
	background-image: url(../img/obj-rb.png);
	background-size: contain;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -14px;
}
.sec__head--block{
	max-width: 365px;
	margin: 0 auto 24px;
}
.sec__lead--block{
	margin-bottom: 24px;
}
.sec__lead{
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}
.period__box{
	border: 1px solid var(--primary-color);
	padding: 14px 16px;
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.period__box li{
	display: flex;
	gap: 12px;
	align-items: center;
}
.period__box li:not(:last-child){
	padding-bottom: 3px;
	border-bottom: 1px dotted var(--primary-color);
}
.period__num{
	width: 30px;
	height: 30px;
	background-image: url(../img/num-wp.svg);
	background-size: contain;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.period__num span{
	font-family: var(--font-Alice);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	text-align: center;
}
.period__date{
	font-family: var(--font-Alice);
	font-size: 15px;
}
.period__date span{
	font-size: 1.5em;
}

.howto .acc__btn{
	border-radius: 0;
	width: 100%;
	text-align: center;
}
.howto .acc__body{
	border: 1px solid var(--primary-color);
	background-color: #fff;
	margin-top: 0;
	padding: 16px 8px 32px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{padding: 40px 0;}
	.sec__bg{
		padding: 0 15px;
		background-size: 15px auto;
	}
	.sec__inner{
		padding: 40px 85px;
	}
	.sec__inner::before{
		width: 117px;
		height: 49px;
		top: -16px;
	}
	.sec__head--block{
		margin: 0 auto 32px;
	}
	.sec__lead--block{
		margin-bottom: 32px;
	}
	.sec__lead{
		line-height: 1.7;
	}
	.period__box{
		padding: 24px;
		margin-bottom: 32px;
		gap: 8px;
	}
	.period__box li{
		gap: 12px;
	}
	.period__box li:not(:last-child){
		padding-bottom: 8px;
	}
	.period__num{
		width: 36px;
		height: 36px;
	}
	.period__num span{
		font-size: 24px;
	}
	.period__date{
		font-size: 20px;
	}
}

/* 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: -3px;  /* 左端 */}
.splide__arrow--next {right: -3px;  /* 右端 */}
/* 画像だけ表示 */
.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: #F5F5F5;
}
.splide__pagination__page.is-active {
  background: var(--primary-color);
}

/* スライド自体をフレックスコンテナに */
.slide__box {
  display: flex;             /* フレックス化 */
  flex-direction: column;    /* 上下方向 */
  justify-content: center;   /* 縦中央 */
  align-items: center;       /* 横中央 */
  text-align: center;        /* テキスト中央寄せ */
	background-color: #F5F5F5;
	border-radius: 8px;
	padding: 16px 8px;
}
.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 12px;
	line-height: 1.2;
	margin-bottom: 2px;
	margin-top: 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;
	align-items: center;
	justify-content: center;
}
.flex-left{
width: 80%;
flex-shrink: 0;
}
.slide__box--inner .icon{
	width: 36px;
}

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

/* ------------------------------------------------------------
#ARphoto
------------------------------------------------------------ */
.sec__head--block{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.sec__date{
	border-top: 1px solid var(--accent-color);
	border-bottom: 1px solid var(--accent-color);
	color: var(--accent-color);
	font-family: var(--font-Alice);
	font-size: 20px;
	padding: 2px;
	text-align: center;
}
.sec__date span{
	font-size: 1.5em;
}
.caution{
	border: 1px solid var(--red-color);
	color: var(--red-color);
	text-align: center;
	padding: 4px;
}

#ARphoto .sec__lead{
	text-align: left;
}
#ARphoto .sec__lead span{
	color: var(--accent-red-color);
	font-weight: bold;
}
.photoframe__box{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}
.photoframe__box .txt01{
	text-align: center;
	font-weight: bold;
	color: #233871;
	font-size: 30px;
}
.photoframe__lead{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}

.img-ARframe02{
	width: 78%;
	max-width: 400px;
	margin: 0 auto;
}
.notice__box{
	border: 1px solid #9B9B9B;
	padding: 10px;
	margin-bottom: 24px;
}
.notice__head{
	text-align: center;
	margin-bottom: 8px;
	font-weight: 500;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__head--block{
		gap: 24px;
	}
	.sec__date{
		font-size: 22px;
		padding: 4px;
	}
	
	#ARphoto .sec__lead{
		text-align: center;
	}
	
	.photoframe__box{
		max-width: 350px;
		gap: 20px;
		margin: 0 auto 16px;
	}
	.notice__box{
		margin-bottom: 32px;
	}
	
}


/* ------------------------------------------------------------
#Goods
------------------------------------------------------------ */
#Goods .sec__lead span{
	font-weight: bold;
	color: var(--accent-red-color);
	font-size: 1.2em;
}
.goods-name{
	text-align: center;
	font-weight: bold;
	color: var(--accent-color);
	font-size: 16px;
}
.goods__box{
	margin-bottom: 24px;
}
.goods__box--img{
	position: relative;
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}
.img-goods-wp{
	width:64px;
	position: absolute;
	bottom: -24px;
	right: -30px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.goods-name{
		font-size: 18px;
	}
	.img-goods-wp{
		width:72px;
		bottom: -24px;
		right: -40px;
	}
}

/* ------------------------------------------------------------
#Special
------------------------------------------------------------ */
.promotion__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}
.promotion__list--item{
	border: 1px solid #F5F5F5;
	background-color: #fff;
	padding: 14px;
}
.promotion__place{
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 4px;
}
.promotion__date{
	text-align: center;
	color: var(--accent-color);
	font-family: var(--font-Alice);
	margin-bottom: 10px;
}
.promotion__date span{
	font-size: 1.5em;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.promotion__list{
		gap: 24px;
	}
	.promotion__list--item{
		max-width: 360px;
		padding: 20px;
		margin: 0 auto;
	}
	.promotion__place{
		font-size: 16px;
	}
	.promotion__date{
		font-size: 18px;
		margin-bottom: 16px;
	}
	#Special.sec__wrap{
		padding-bottom: 80px;
	}
}


/* ------------------------------------------------------------
#Info
------------------------------------------------------------ */
.info__wrap{
	background-image: url(../img/bg02.svg);
	background-repeat: repeat;
}
.info__top{
	background-color: #233871;
	background-image: url(../img/info-line.png);
	background-repeat: repeat-x;
	background-position: bottom;
	background-size: auto 23px;
	height: 94px;
}
.info-cont__inner{
	padding: 90px 12px 32px;
	position: relative;
}
.info__head{
	position: absolute;
	width: 311px;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
}
.tour-info__block{
	margin-bottom: 32px;
}
.img_tourKV{
	margin-bottom: 32px;
}
.tour-info__head{
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	margin-bottom: 16px;
}
.link-btn{
	background-color: #233871;
	border: 2px solid #233871;
	border-radius: 36px;
	height: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.link-btn span{
	line-height: 1.2;
}

.prof__head{
	text-align: center;
	color: #233871;
	font-family: var(--font-Alice);
	font-size: 30px;
	padding-bottom: 37px;
	margin-bottom: 16px;
	position: relative;
}
.prof__head::after{
	content: "";
	display: block;
	width: 171px;
	height: 37px;
	background-image: url(../img/obj-head.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom:0;
}
.prof__img{
	margin-bottom: 8px;
}
.prof__txt{
	background-color: #fff;
	padding: 16px;
	margin-bottom: 32px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.info__top{
		height: 130px;
	}
	.info-cont__inner{
		padding: 100px 80px 80px;
	}
	.info__head{
		width: 375px;
		top: -100px;
	}
	.tour-info__block {
    margin-bottom: 64px;
}
.tour-info__head {
	font-size: 22px;
	margin-bottom: 24px;
}
.link-btn {
	width: 360px;
	margin: 0 auto;
	font-size: 16px;
	height: 72px;
	transition: all .3s;
}
.link-btn:hover{
	background-color: #fff;
	color: #233871;
}
.prof__head {
	font-size: 36px;
	padding-bottom: 43px;
	margin-bottom: 24px;
}
.prof__head::after {
	width: 200px;
	height: 43px;
}
.prof__img {
	margin-bottom: 16px;
}
	
}




/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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: rgb(168 119 204 / 90%);
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-family: var(--font-Alice);
	border-radius: 40px;
	font-size: 22px;
}
.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;
	font-size: 20px;
	background-color: rgb(215 219 229 / 90%);
}
	.event-end.event-end-block{
		font-size: 16px;
	}
}





