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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #000000;
	--primary-color: #C94454;
	--accent-color: #3C6F33;
	--sub-color: #677984;
	--bg-color: #FFFFFF;
	--red-color: #bb0000;
	
}
.main__wrap{
	padding-top: 66px;
	background-color: #fff;
	color: var(--text-color);
	box-sizing: border-box;
	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;
	overflow: hidden;
}
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);}
.fc-white{color: #fff;}
.txt-link{
	color: var(--sub-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;
}
.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
}
.fz-s{
	font-size: 0.85em;
}
.ib{display: inline-block;}
.fz12{font-size: 12px;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.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;}
}
/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(7px); 
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードアップ(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); 
	/* transition-delay: .8s; */ /* フェード開始を0.3秒遅らせる */
}

/* フェードイン(初期値) */
.js__fadeIn{
	opacity: 0; 
	transition: opacity .8s; 
}
/* フェードアップ(スクロールした後) */
.js__fadeIn.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	/* transition-delay: .8s; */ /* フェード開始を0.3秒遅らせる */
}


/* ズームin(初期値) */
.js__zoomIn{
	opacity: 0; /* 最初は非表示 */
	transform: scale(0.85,0.85);
	transition: 1.2s ease;
}
/* ズームin(スクロールした後) */
.js__zoomIn.is-inview {
	opacity: 1;
	transform: scale(1,1);
}

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

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
	margin-top: 16px;
}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
	background-color: #000;
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
}
.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: #000;
	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
------------------------------------------------------------ */
.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{
		background-image: url(../img/bg-voice.png);
		background-size: cover;
		border-radius: 16px;
		padding: 12px;
		width: 600px;
		margin: 0 auto 8px;
		box-sizing: border-box;
	}
	.voice-btn__pc{
		border-radius: 10px;
		border: 1px solid #E6CC8E;
		padding: 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
------------------------------------------------------------ */

/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background-image: url(../img/bg-mv.png);
		background-size: cover;
		background-position: center bottom;
		position: relative;
		padding-top: 24px;
	}
	.mv__block img{
		max-width: 1160px;
		margin: 0 auto;
	}
	.mv__block::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-image: url(../img/obj-mv-left-pc.png),url(../img/obj-mv-right-pc.png);
		background-repeat: no-repeat,no-repeat;
		background-size: 500px,500px;
		background-position: bottom left,bottom right;
		position: absolute;
		top: 0;
		left: 0;
	}
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
.period{
	font-family: "Barlow", sans-serif;
  font-weight: 700;
	color: #fff;
	font-size: 18px;
	padding: 6px 30px;
	border-radius: 4px;
	width: fit-content;
	margin: 0 auto 16px;
	background: url(../img/bg-pattern-date.png),url(../img/bg-pattern-date.png),#000;
	background-repeat: no-repeat,no-repeat;
	background-position: center left,center right;
	background-size: 12px auto,12px auto;
}
.bgA{background-image: url(../img/bg-patternA.png);}
.bgB{background-image: url(../img/bg-patternB.png);}
.bgA,.bgB{
	background-size: 36px;
	padding: 24px 0;
}
.cont-inner{
	background-color:var(--bg-color);
	border-radius: 24px;
	padding: 24px 14px;
}
.sec__wrap{padding: 56px 0;}
.sec__head{margin: 0 auto 16px;}
.wrapA{
	background-image: url(../img/obj-head01-right.png),url(../img/obj-bottom01-right.png);
	background-position: top right -64px,bottom right -125px;
}
.wrapB{
	background-image: url(../img/obj-head01-left.png),url(../img/obj-bottom01-left.png);
	background-position: top left -64px,bottom left -125px;
}
.wrapA,.wrapB{
	background-repeat: no-repeat,no-repeat;
	background-size: 306px auto,340px auto;
}
.wrapC,.wrapD{
	background-repeat: no-repeat,no-repeat;
	background-size: 306px auto,300px auto;
}
.wrapC{
	background-image: url(../img/obj-head02-left.png),url(../img/obj-bottom02-left.png);
	background-position: top left -64px,bottom left -75px;
}
.wrapD{
	background-image: url(../img/obj-head02-right.png),url(../img/obj-bottom02-right.png);
	background-position: top right -64px,bottom right -75px;
}
.sec__lead{
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.wrapA,.wrapB,.wrapC,.wrapD{
		max-width: 1000px;
		margin: 0 auto;
		background-size: 400px auto,380px auto;
	}
	.wrapA,.wrapD{background-position: top right 0,bottom right 0;}
	.wrapB,.wrapC{background-position: top left 0,bottom left 0;}
	.sec__head{margin: 0 auto 32px;}
	.period{
		font-size: 24px;
		padding: 6px 40px;
		margin: 0 auto 24px;
		background-size: 16px auto,16px auto;
	}
	.cont-inner {padding: 56px;}
	.sec__lead{
		font-size: 18px;
		margin-bottom: 40px;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	background-image: url(../img/bg-intro.png);
	padding-bottom: 40px;
}
#intro h1{
	width: 92%;
	margin: 0 auto;
	max-width: 600px;
	position: relative;
	transform: translateY(-50%);
}
.img-ttl{
	box-shadow: 0px 3px 6px #00000029;
}
.img-vol{
	width: 75px;
	position: absolute;
	right: -10px;
	bottom: -10px;
}
#intro .period{
	font-size: 24px;
	padding: 6px 24px;
	margin: 0 auto 24px;
	background: url(../img/bg-pattern-date.png),url(../img/bg-pattern-date.png),linear-gradient(180deg, #C94454 0%, #900B14 100%);
	background-repeat: no-repeat,no-repeat,no-repeat;
	background-position: center left,center right,0% 0%;
	background-size: 12px auto,12px auto,100% 100%;
}
.intro__lead{
	font-weight: bold;
	text-align: center;
	margin-bottom: 24px;
}
.anc-btn{
	display: block;
}
.anc-btn img{border-radius: 8px;}
.btn01{
	max-width: 240px;
	margin: 0 auto 9px;
}
.menu__list{
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	justify-content: center;
}
.menu__list li{
	max-width: 168px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.img-vol{
		width: 110px;
		right: -30px;
	}
	#intro .period {
    font-size: 30px;
    padding: 6px 40px;
    margin: 0 auto 32px;
    background-size: 16px auto, 16px auto, 100% 100%;
}
.intro__lead {
	font-size: 20px;
	line-height: 1.8;
	margin-bottom: 32px;
}
.btn01 {
	max-width: 282px;
	margin: 0 auto 12px;
}
.menu__list li {max-width: 193px;}
a.anc-btn{
	transition: all .5s;
}
a.anc-btn:hover{
	transform: translateY(3px);
}
}

/* ------------------------------------------------------------
#stamp
------------------------------------------------------------ */
#stamp .sec__head{width: 341px;}
#stamp .cont-inner{
	padding-top: 32px;
}
#stamp .sec__lead{
	margin-bottom: 32px;
}
.complete__block{
	margin-bottom: 24px;
}
.complete__head{
	text-align: center;
	background-image: url(../img/obj-complete-head.svg);
	background-repeat: repeat-x;
	background-position: center;
	margin-bottom: 12px;
}
.complete__head span{
	font-weight: bold;
	background-color: var(--bg-color);
	padding: 0 12px;
}
.present-name{
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 6px 24px;
	background-color: var(--primary-color);
	border-radius: 4px;
	width: fit-content;
	margin: 16px auto 0;
	line-height: 1.2;
}

.spot{
	margin-bottom: 24px;
}
.spot .acc__btn {
	font-weight: bold;
	width: 100%;
	background-color: var(--accent-color);
	padding: 6px 28px;
	border-radius: 4px;
	box-sizing: border-box;
	text-align: center;
}
.spot .acc__btn span::before, .spot .acc__btn span::after {
	background-color: var(--accent-color);
}
.spot__lead{
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	width: fit-content;
	margin: 0 auto 16px;
	position: relative;
}
.spot__lead::before,.spot__lead::after{
	content: "";
	display: block;
	width: 28px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
}
.spot__lead::before{
	background-image: url(../img/obj-spot-head-left.svg);
	left: -32px;
}
.spot__lead::after{
	background-image: url(../img/obj-spot-head-right.svg);
	right: -32px;
}

.spot-map__block{
	padding-bottom: 16px;
}
.spot-map__box{
	position: relative;
	max-width: 350px;
	margin: 0 auto 8px;
}
.map-pin{
	width: 11vw;
	max-width: 45px;
	height: 11vw;
	max-height: 45px;
	background-color: var(--bg-color);
	border-radius: 50%;
	border: 3px solid var(--primary-color);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
  align-items: center;
	position: absolute;
	cursor: pointer;
	transition: all .5s;
}
.map-pin span{
	font-family: "Barlow", sans-serif;
  font-weight: 700;
	color: var(--primary-color);
	font-size: 25px;
	text-align: 1;
}
.map-pin.active{
	background-color: var(--primary-color);
}
.map-pin.active span{
	color: #fff;
}

/* 京都駅 */
.map-pin.pin01{
	bottom: 8%;
	left:27%
}
/* 玉乃光 */
.map-pin.pin02 {
	bottom: 31%;
	left: 41%;
}
/* 車折神社 */
.map-pin.pin03 {
	top: 29%;
	left: 9.5%;
}
/* 下鴨神社 */
.map-pin.pin04 {
	top: 5%;
  right: 10%;
}
/* 出町ふたば */
.map-pin.pin05 {
	top: 8%;
	right: 41%;
}
/* 鴨川デルタ */
.map-pin.pin06 {
	top: 25.5%;
	right: 15.5%;
}

/* GiGo */
.map-pin.pin07{
	top: 46.5%;
	right: 23%;
}

/* マップ スライドカセット*/
.spot__slide--box{
	height: 100%;
	background-color: #FAF6EA;
	border-radius: 16px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.spot-name{
	font-size: 18px;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 8px;
	text-align: center;
}
.spot-txt{
	font-size: 12px;
	margin-bottom: 8px;
}
.spot__box--top--flex{
  display: flex;
}
.spot__box--top--flex .flex-right{
  width: 50%;
}
.spot-info{
	font-size: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.spot-info>div{
	display: flex;
}
.spot-info dt{
	flex-shrink: 0;
}
.spot__slide--box .note__list li{
  font-size: 10px;
}
.spot__box--bottom{
	margin-top: 12px;
}

/* splideカスタマイズ */
.splide__pagination.spot-slide-pagination {
	bottom: -1.5em;
	/* left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1; */
}
.splide__pagination__page.spot-slide-page.is-active {
	background: var(--primary-color);
	transform: scale(1);
	z-index: 1;
	opacity: 1;
}
.splide__pagination__page.spot-slide-page {
	background: var(--primary-color);
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 5px;
	opacity: .4;
	padding: 0;
	position: relative;
	transition: transform .2s linear;
	width: 8px;
}
.splide__arrow.spot-slide-arrow:disabled {opacity: 0;}
.splide__arrow--next.spot-slide-next {right: -12px;}
.splide__arrow--prev.spot-slide-prev {left: -12px;}
.splide__arrow.spot-slide-arrow {background: none;}
.splide__arrow.spot-slide-arrow svg {
	fill: var(--primary-color);
	height: 1.7em;
	width: 1.7em;
}

/* カセットの高さ可変させる場合 */
.splide__track--fade>.splide__list>.splide__slide {height: 0 !important;}
.splide__track--fade>.splide__list>.splide__slide.is-active {height: auto !important;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	#stamp .sec__head{width: 409px;}
#stamp .cont-inner{padding-top: 56px;}
#stamp .sec__lead{margin-bottom: 40px;}
.img-kv{
	max-width: 600px;
	margin: 0 auto 24px;
}
.complete__block{margin-bottom: 32px;}
.complete__head{margin-bottom: 24px;}
.complete__head span{
	padding: 0 24px;
	font-size: 20px;
}
.img-wallpaper{
	max-width: 400px;
	margin: 0 auto;
}
.spot {
	margin-bottom: 32px;
}
.spot .acc__body {
	margin-top: 24px;
}
.spot .acc__btn {
	padding: 8px 28px;
	font-size: 16px;
}
.spot__lead {
	font-size: 18px;
	margin: 0 auto 24px;
}
.spot__lead::before, .spot__lead::after {
	width: 40px;
	height: 42px;
}
.spot__lead::before {left: -50px;}
.spot__lead::after {right: -50px;}
.spot-map__block{
	display: flex;
	gap: 20px;
	padding-bottom: 0;
}
.spot-map__box{
	width: 350px;
}
.map-pin:hover{
	background-color: var(--primary-color);
	transform: scale(1.1);
}
.map-pin:hover span{
	color: #fff;
}
.spot__slide--block{
	width: calc(100% - 370px);
}
.spot__slide--box{
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.spot-txt {font-size: 14px;}
.spot-info {font-size: 14px;}
}
/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
#voice .sec__head{width: 314px;}
#voice .cont-inner{
	position: relative;
}
.howto{
	margin-bottom: 24px;
	padding-top: 200px;
}
.howto__box{
	background-image: url(../img/bg-patternC.png);
	background-size: 75px;
	padding: 12px;
	position: relative;
	z-index: 1;
}
.img-voice{
	position: absolute;
	width: 394px;
	left: 50%;
	transform: translateX(-50%);
	top: 170px;
}
.howto__box--inner{
	background-color: var(--bg-color);
	border: 1px solid #E6CC8E;
	padding: 16px;
}
.howto__head{
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	margin-bottom: 12px;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.step__list li{
	display: flex;
	gap: 8px;
}
.step__label{
	width: 52px;
	flex-shrink: 0;
}
.step__label span{
	background-color: #E6CC8E;
	font-family: "Barlow", sans-serif;
  font-weight: 700;
	font-size: 12px;
	border-radius: 16px;
	display: block;
	text-align: center;
	padding: 3px ;
}
.step__txt{
	font-size: 14px;
}
.note__head{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 4px;
}
.note__group{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#voice .sec__head {
    width: 377px;
} 
	.howto {
    margin-bottom: 32px;
    padding-top: 330px;
}
	.img-voice {
    width: 500px;
    top: 195px;
}
.howto__box {
	max-width: 500px;
	margin: 0 auto;
	box-sizing: border-box;
}
.howto__head {
	font-size: 16px;
	margin-bottom: 16px;
}
.step__list li {
	gap: 12px;
	align-items: center;
}
.step__label {width: 72px;}
.step__label span {
	font-size: 14px;
	border-radius: 20px;
	padding: 4px;
}
.step__txt {
	font-size: 16px;
}
.note__head {
	font-size: 14px;
	margin-bottom: 4px;
}
}

/* ------------------------------------------------------------
#present
------------------------------------------------------------ */
#present .sec__head{width: 256px;}
#present .present-name{
	margin: 0 auto 16px;
}
#present .present-name span{font-size: 0.6em;}
#present .howto__box {
	margin: 0 auto 16px;
}
.shop__box{
	border: 1px solid var(--accent-color);
	padding: 16px;
}
.shop__info{
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
	margin-bottom: 16px;
}
.shop__info>div{
	display: flex;
	gap: 4px;
}
.shop__info dt{
	font-weight: bold;
	color: var(--accent-color);
	flex-shrink: 0;
}
.link-btn{
	display: block;
	width: fit-content;
	margin: 0 auto;
	background-color: var(--accent-color);
	padding: 12px 56px;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
	position: relative;
	
}
.link-btn::after{
	content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
		transition: all .5s;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#present .sec__head {width: 307px;}
	.img-presentgoods{
		max-width: 500px;
		margin: 0 auto 24px;
	}
	.shop__box {
		max-width: 500px;
		margin: 0 auto;
    box-sizing: border-box;
}
.shop__info {
	font-size: 16px;
	margin-bottom: 24px;
}
.link-btn:hover::after{
    right: 12px;
}
}


/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
#goods .sec__head{width: 194px;}
.goods__block{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.modal-btn {
	cursor: pointer;
	display: block;
	position: relative;
}
.modal-icon{
	position: absolute;
	width: 40px;
	right: 0;
	bottom: 0;
}

/* モーダル */
.modal__wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
}
.modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}
.modal_flex {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
	flex-direction: column;
	gap: 16px;
}
.modal_container {
	pointer-events: initial;
  max-width: 600px;
  width: calc(100% - 20px);
  padding: 40px 24px 16px;
}
#modal01 .modal_container{
	max-width: 500px;
}
.modal_close_btn {
	width: fit-content;
	margin: 16px auto 0;
	padding: 28px 2px 2px;
	color: #fff;
	position: relative;
	cursor: pointer;
}
.modal_close_btn::before,
.modal_close_btn::after {
	content: "";
    background-color: #fff;
    width: 2px;
    height: 30px;
    position: absolute;
    top: 14px;
    right: 50%;
}
.modal_close_btn::before {
	transform: translateY(-50%) rotate(-45deg);
}
.modal_close_btn::after {
	transform: translateY(-50%) rotate(45deg);
}

 
.bgB .shop__box{
	border: 1px solid var(--sub-color);
}
.bgB .shop__info dt{
	color: var(--sub-color);
}
.bgB .link-btn{
	background-color: var(--sub-color);
}
.company-info{
	background-color: var(--sub-color);
	padding: 12px;
	color: #fff;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.company-info a{
	text-decoration: underline;
	color: #fff;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	#goods .sec__head {width: 234px;}
	.goods__block{
		flex-direction: row;
		gap: 32px;
		margin-bottom: 32px;
		align-items: center;
	}
	.company-info {
    font-size: 16px;
}
.modal-btn__img{
	overflow: hidden;
	background-color: #000;
}
.modal-btn__img img{
	transition: all .5s;
}

.modal-btn:hover .modal-btn__img img{
	opacity: 0.6;
}
.modal_container {
	background-color: #fff;
  max-width: 600px;
  width: calc(100% - 20px);
  padding: 40px 24px 16px;
	overflow-y: auto;
}
#modal01 .modal_container{
	max-width: 600px;
}
.modal_close_btn::before,
.modal_close_btn::after {
    background-color: #000;
}

}

/* ------------------------------------------------------------
#amusement
------------------------------------------------------------ */
#amusement .sec__head{width: 312px;}
.gigo-info__box{
	font-size: 14px;
	margin-bottom: 16px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#amusement .sec__head {
    width: 375px;
}
#amusement .modal-btn{
	width: 500px;
	margin: 0 auto 24px;
}
.gigo-info__box {
	font-size: 16px;
}
}

/* ------------------------------------------------------------
#info
------------------------------------------------------------ */
.info__wrap{
	background-color: #000;
	background-image: url(../img/bg-patternD.png),url(../img/catch-copy.png);
	background-repeat: repeat,no-repeat;
	background-position: center,center;
	background-size: auto,120%;
	padding: 32px 0;
}
.movie{
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.movie-date{
	width: 291px;
	margin: 0 auto;
}
.img-moiveKV{
	width: 74%;
	max-width: 400px;
	margin: 0 auto;
}
.bnr_footer_cinema{
	width: 93%;
	max-width: 360px;
	margin: 0 auto;
	display: block;
	transition: all .5s;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.info__wrap {
		padding: 56px 0;
		background-size: auto,100%;
	}
	.movie {
    margin-bottom: 24px;
    gap: 16px;
}
.movie h3 img{
	max-width: 520px;
	margin: 0 auto;
}
.movie-date {
	width: 360px;
}
.bnr_footer_cinema:hover{
	transform: translateY(3px);
}
}

/* ------------------------------------------------------------
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;}
.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{
	font-family: "Barlow", sans-serif;
  font-weight: 700;
	font-size: 24px;
	background-color: rgba(2, 35, 18, 0.8);
	padding: 6px;
	text-align: center;
	border-radius: 40px;
	color: #fff;
}

.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;
}
.event-end-block.cs{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}











