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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #ffffff;
	--sub-text-color:#162C65;
	--primary-color: #219CD3;
	--bg-color: rgb(0 0 0 / 0.8);
	--red-color: #AA0000;
	--accent-color: #9C93BD;
	--border-color: #817A91;
	--serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--eb-garamond: "EB Garamond", 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;
}
.noto-serif-jp{
	font-family: "Noto Serif JP", serif;
  }
.eb-garamond{
	font-family: "EB Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
  }
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;}
.sec__wrap{
	width: 92%;
	margin: 0 auto 32px;
	max-width: 800px;
	background-color: var(--bg-color);
	padding: 32px 0;
}
.container{
	width: 92%;
	max-width: 630px;
	margin: 0 auto;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--primary-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;}
.pdtS{padding-top: 8px;}
.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;}
	.sec__wrap {
    margin: 0 auto 56px;
    padding: 40px 0;
}
	body::before {
    background-repeat: repeat-x;
		background-size: contain;
}
	/* .txt-note{font-size: 14px;} */
	/* .note__list li{font-size: 14px;} */
	.pc_center {text-align: center;}

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

}


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

.acc__btn.howto{
	font-weight: bold;
	width: 100%;
	color: #fff;
	border:none;
	background-color: var(--accent-color);
	padding: 6px;
	border-radius: 0;
	text-align: center;
}
.acc__btn.howto span {
	background-color: #fff;
}
.acc__btn.howto span::before, .acc__btn.howto span::after {
	background-color: var(--accent-color);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.acc__btn.howto {
    font-size: 16px;
    padding: 8px;
}
}

/* ------------------------------------------------------------
アコーディオンの閉じるボタン（追加）
------------------------------------------------------------ */
.acc__close-btn {
    display: block; /* ボタンをブロック要素にして中央寄せしやすくする */
    margin: 24px auto 0; /* 上部に少しマージンをあけ、左右をautoで中央寄せ */
    padding: 8px 30px 8px 10px;
    color: #fff; /* 文字色 */
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 14px;
		font-weight: bold;
		background-color: transparent;
		position: relative;
}
.acc__close-btn span{
	position: relative;
	right: -16px;
}
.acc__close-btn span::before, .acc__close-btn span::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 16px; /* 棒の高さ */
  background: #ffffff;
}
.acc__close-btn span::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.acc__close-btn span::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* ------------------------------------------------------------
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--outer{
		background-image: url(../img/bg_voice.jpg);
		padding: 8px;
		margin-bottom: 24px;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.voice-btn__pc{
		border: 1px solid #fff;
		padding: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-family: var(--serif);
		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;
	}
	
}

/* ------------------------------------------------------------

------------------------------------------------------------ */
body::before {
	content: "";
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg01.jpg) no-repeat center center;
	background-size: cover;
}


/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン(初期値) */
.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__fadeDown{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(-20px); /* 下に30pxの位置から */
	transition: opacity .8s, transform .5s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	/* transition-delay: .2s; */ /* フェード開始を0.3秒遅らせる */
}

.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
	animation-name: flipLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: left center;
	opacity: 0;
	transition-delay: 0.8s;
	animation-delay: 0.3s;
	
}
@keyframes flipLeftAnime{
	from {
	 transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}

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

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		max-width: 850px;
		margin: 24px auto;
	}
	.mv__pc{
		position: relative;
	}
	.pc-mv-bg{
		position: absolute;
		z-index: -1;
		max-width: 790px;
		display: block;
		left:50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	background: transparent linear-gradient(180deg, #000000 0%, #000000B3 68%, #164D764D 91%, #164D7600 100%) 0% 0% no-repeat;
	padding: 12px 0 40px;
}
.intro__cont{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.intro__date{
	max-width: 450px;
	margin: 0 auto 16px;
}
.intro__lead{
	font-family: var(--serif);
	text-align: center;
	font-size: 16px;
	line-height: 2;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__lead{
		font-size: 18px;
	}
	.intro__wrap {
    background: transparent linear-gradient(180deg, #000000 0%, #000000B3 30%, #164D764D 70%, #164D7600 100%) 0% 0% no-repeat;
    padding: 40px 0 56px;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	margin-bottom: 40px;
}
.menu__cont{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.menu__group--head{
	background-color: #fff;
	border-radius: 4px 4px 0 0;
	padding: 5px;
	text-align: center;
	font-weight:bold;
	color: var(--sub-text-color);
	font-size: 12px;
	letter-spacing: 0.05rem;
	margin-bottom: 8px;
}
.menu__group--list{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.menu__list{
	display: flex;
	gap: 15px;
	justify-content: center;
}
.menu__list--item{
	width: calc( ( 100% - 15px ) / 2 );
	max-width: 165px;
}
.menu__info{
	max-width: 245px;
	margin: 0 auto;
	padding-top: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {margin-bottom: 64px;} 
	.menu__group--head {
    padding: 5px;
    font-size: 16px;
    margin-bottom: 16px;
}
	.menu__group--list {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 32px;
}
.menu__group--item{
	width: calc( ( 100% - 24px ) / 2 );
}
.menu__list--item {
	max-width: 170px;
	transition: all.5s;
}
.menu__info {
	max-width: 275px;
	padding-top: 15px;
	transition: all .5s;
}
.menu__list--item:hover,.menu__info:hover{
	transform: translateY(5px);
}
}

/* ------------------------------------------------------------
#共通
------------------------------------------------------------ */
.sec__head--box{
	padding-top: 47px;
	max-width: 360px;
	margin: 0 auto;
	position: relative;
}
.sec__head--box::before{
	content: "";
	display: block;
	width: 55px;
	height: 43px;
	background-image: url(../img/obj_flower.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.cont__head--box{
	padding: 30px 0;
	background-image: url(../img/bg_cont-head.png);
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 400px;
	margin: 0 auto;
}
.cont__lead{
	font-family: var(--serif);
	font-size: 16px;
	margin-bottom: 24px;
	line-height: 1.7;
}
.cont__schedule--list{
	font-family: var(--serif);
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 auto 24px;
}
.cont__schedule--list li{
	display: flex;
	gap: 4px;
	font-size: 13px;
}
.cont__schedule--num{
	width: 14%;
}
.cont__schedule--num span{
	background-color: var(--accent-color);
	border-radius: 2px;
	text-align: center;
	display: block;
	padding: 2px 0;
}
.cont__schedule span{
	font-size: 1.25em;
}
.cont__schedule--list li:not(:last-child){
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.cont__wrap:not(:last-child){
	margin-bottom: 40px;
}
.frame__box{
	margin-bottom: 24px;
	background-image: url(../img/obj_star.svg),url(../img/obj_star.svg),url(../img/obj_star.svg),url(../img/obj_star.svg);
	background-position: top left,top right,bottom left,bottom right;
	background-repeat: no-repeat,no-repeat,no-repeat,no-repeat;
	padding: 7.5px 0;
}
.frame__top,.frame__bottom{
	height: 15px;
	padding: 0 20px;
}
.frame__top span{
	height: 15px;
	display: block;
	border-top: 1px solid #fff;
}
.frame__bottom span{
	display: block;
	border-bottom: 1px solid #fff;
	height: 15px;
}
.frame__middle{
	padding: 0 7.5px;
}
.frame__inner{
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 0 12px;
}
.frame__head{
	background-color: #fff;
	color: var(--sub-text-color);
	font-weight: bold;
	padding: 3px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 8px;
}
.frame__inner--box{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.step__box.frame{
	padding: 12px;
	border: 1px solid var(--border-color);
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
}
.step__list--item:not(:last-child){
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-color);
}
.step__list--flex{
	display: flex;
	gap: 8px;
}
.step-label{
	font-family: var(--eb-garamond);
	background-color: var(--accent-color);
	border-radius: 2px;
	padding: 2px 6px;
}
.step__list--item .txt02{
	font-size: 12px;
	padding-top: 4px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.cont__lead{
		margin-bottom: 32px;
	}
	.cont__schedule--list{
		gap: 12px;
		margin: 0 auto 32px;
	}
	.cont__schedule--list li{
		gap: 12px;
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	.cont__schedule--list li:not(:last-child) {
    padding-bottom: 12px;
}
.frame__box{
	margin-bottom: 32px;
	padding: 11px 0;
	background-size: 24px;
}
.frame__top,.frame__bottom{
	height: 24px;
	padding: 0 30px;
}
.frame__top span{
	height: 24px;
}
.frame__bottom span{
	height: 24px;
}
.frame__middle{
	padding: 0 11px;
}
.frame__inner{
	padding: 0 24px;
}
.frame__head{
	padding: 6px;
	margin-bottom: 12px;
	font-size: 16px;
}
.frame__inner--box{
	gap: 16px;
}
.step__list {
	gap: 16px;
	margin-bottom: 24px;
}
.step__list--flex {
	gap: 16px;
}
.step__box.frame {
	padding: 24px;
}
.step__list--item:not(:last-child) {
	padding-bottom: 16px;
}
.step-label {
	font-size: 16px;
	padding: 2px 16px;
}
.step__list--flex .txt01{
	font-size: 16px;
}
.step__list--item .txt02 {
	font-size: 14px;
	padding-top: 12px;
}
}


/* ------------------------------------------------------------
#talk
------------------------------------------------------------ */
.more{
	text-align: center;
	font-family: var(--serif);
	font-size: 20px;
	padding: 25px 0;
	position: relative;
}
.more::after{
	content: "";
	display: block;
	width: 317px;
	height: 25px;
	background-image: url(../img/obj_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.more {
    font-size: 24px;
    padding: 46px 0 0px;
}
}

/* ------------------------------------------------------------
#present
------------------------------------------------------------ */
.prize__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.prize__list .txt01{
	text-align: center;
	font-family: var(--serif);
	font-size: 16px;
}
.attention__head{
	text-align: center;
	margin-bottom: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}


/* ------------------------------------------------------------
#card
------------------------------------------------------------ */
.card__box{margin-bottom: 24px;}
.card__box--head{
	text-align: center;
	font-size: 16px;
	font-family: var(--serif);
	margin-bottom: 8px;
}
.img-card{
	max-width: 300px;
	width: 76%;
	margin: 0 auto;
}
.obtain__list{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.obtain__list--item{
	position: relative;
}
.obtain__list--item:not(:last-child):after{
	content: "";
	display: block;
	width: 64px;
	height: 16px;
	background-image: url(../img/obj_step-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -24px;
	left: 50%;
	transform: translateX(-50%);
}
.obtain__list--head{
	padding: 4px;
	text-align: center;
}
.obtain__list--head.train{
	background: linear-gradient(90deg, #005481 0%, #817F92 100%) 0% 0%;
}
.obtain__list--head.store{
	background: linear-gradient(90deg, #A06991 0%, #8F8AB5 100%) 0% 0%;
}
.obtain__list--box{
	background-color: #fff;
	padding: 12px 15px;
	color: #000000;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.obtain__list--step{
	text-align: center;
	color: var(--accent-color);
	font-family: var(--eb-garamond);
	font-size: 18px;
	margin-bottom: 4px;
}
.obtain__list--txt01{
	text-align: center;
	font-weight: bold;
}
.obtain__list--txt02{
	text-align: center;
	font-size: 12px;
}
.step-img-btn{
	width: 186px;
	margin: 0 auto;
	transition: all .5s;
}
.step-img{
	width: 70%;
	max-width: 280px;
	margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.card__box--head {
    font-size: 18px;
    margin-bottom: 16px;
}
.obtain__list--box {
	padding: 16px 24px 24px;
	gap: 16px;
}
.obtain__list--head {
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1;
}
.obtain__list--step {
	font-size: 22px;
	margin-bottom: 8px;
}
.obtain__list--txt01 {
	font-size: 18px;
}
.obtain__list--txt02 {
	font-size: 14px;
}
.step-img-btn:hover{
	transform: translateY(3px);
}
}


/* ------------------------------------------------------------
#ARframe
------------------------------------------------------------ */
.img-AR{
	width: 78%;
	max-width: 300px;
	margin: 0 auto 24px;
}
.wallpaper__box{
	margin-bottom: 24px;
}
.wallpaper__box h3{
	text-align: center;
	font-family: var(--serif);
	margin-bottom: 8px;
}
.wallpaper__list{
	display: flex;
	justify-content: center;
}
.wallpaper__list--item{
	width: 126px;
	text-align: center;
}
.wallpaper__list--item>p{
	font-size: 12px;
	padding-top: 4px;
}
.period{
	margin-bottom: 24px;
}
.period dt{
	font-weight: bold;
	background-color: var(--accent-color);
	padding: 2px;
	text-align: center;
	letter-spacing: 0.05em;
}
.period dd{
	font-family: var(--serif);
	font-weight: bold;
	font-size: 15px;
	text-align: center;
	padding-top: 4px;
}
.period dd span{
	font-size: 1.2em;
}
.cont__lead--note{
	display: block;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	padding-top: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
.img-AR {margin: 0 auto 32px;}
.wallpaper__box {margin-bottom: 32px;}
.wallpaper__box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.wallpaper__list {gap: 20px;}
.wallpaper__list--item {width: 170px;}
.period{margin-bottom: 32px;}
.period dt{
	padding: 4px;
	font-size: 16px;
}
.period dd{
	font-size: 16px;
	padding-top: 10px;
	letter-spacing: 0.05em;
}
.period dd span{
	font-size: 1.3em;
}
}

/* ------------------------------------------------------------
#specialAd
------------------------------------------------------------ */
.specialAd__list{
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.specialAd__list li{
	border: 1px solid var(--border-color);
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.step__list--item.item-flex{
	display: flex;
	gap: 15px;
	justify-content: space-between;
}
.step__list--flex.column{
	flex-direction: column;
}
.step__list--item.item-flex img{
	width: 90px;
	height: 90px;
}
.step__list.nomgb{
	margin-bottom: 0;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.frame__inner>.txt01{
		font-size: 16px;
	}
	.specialAd__list{
		flex-direction: row;
		gap: 16px;
	}
	.step__list--flex.column {
    flex-direction: row;
}
#specialAd .frame__head{
	margin-bottom: 16px;
}
#specialAd .step__list {
	gap: 18px;
	margin-bottom: 0px;
}
}

/* ------------------------------------------------------------
#signage
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	#signage .specialAd__list{
		flex-wrap: wrap;
		justify-content: center;
	}
	#signage .specialAd__list li{
		width: calc( ( 100% - 16px ) / 2 );
	}
}

/* ------------------------------------------------------------
#info
------------------------------------------------------------ */
.info__wrap{
	background-image: url(../img/bg02.jpg);
	padding: 32px 8px 40px;
}
.info__cont--head{
	max-width: 400px;
	margin: 0 auto;
}
.info__cont--block{
	background-color: #fff;
	max-width: 800px;
	margin: 16px auto 0;
	color: #000;
	padding: 15px;
}
.img-logo{
	width: 132px;
	margin: 0 auto 8px;
}
#info h3{
	text-align: center;
	font-family: var(--serif);
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 8px;
}
.info__cont--flex{
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	}
.tour__list{
	font-family: var(--serif);
}
.img-kv{
	width: 130px;
	flex-shrink: 0;
}
.tour__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tour__place{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 2px;
}
.tour__date span{
	font-size: 0.8em;
}
.link-btn{
	display: block;
	width: 220px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.info__wrap {padding: 64px 0;}
	.info__cont--block{
		margin: 32px auto 0;
		padding: 32px;
	}
	.img-logo {
    width: 200px;
    margin: 0px auto 24px;
}
	#info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}
.info__cont--flex {
	justify-content: center;
	margin-bottom: 32px;
	gap: 40px;
}
.img-kv {width: 300px;}
.tour__list {gap: 32px;}
.tour__place {
	font-size: 22px;
	margin-bottom: 4px;
}
.tour__date{
	font-size: 20px;
}
.link-btn {
	max-width: 300px;
	transition: all .5s;
}
.link-btn:hover{
	transform: translateY(5px);
}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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: 5px;
  transition: .3s;
	width: 90px;
  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{
		width: 120px;
		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;}
.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;
}
.cs{
	color: var(--primary-color);
	font-family: var(--eb-garamond);
	font-size: 22px;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
}
.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;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}



