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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #242424;
	--cont01-color: #B593CC;
	--cont02-color: #66A7BA;
	--cont03-color: #6986C7;
	--bg-color: #FFFFFF;
	--red-color: #DD0000;
	--accent-color: #F0B839;
}
.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;
}
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: 1000px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--text-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;}
	.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: #fff;
	background-color: #000;
  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: #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%);}
.acc__body{
	margin-top: 8px;
}

/* 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--outer{
		background: transparent linear-gradient(90deg, #ED8959 0%, #E57F8E 22%, #BECCF3 100%) 0% 0% no-repeat padding-box;border-radius: 16px;
		padding: 6px;
		max-width: 500px;
		margin: 0 auto 16px;
	}
	.voice-btn__pc{
		border: 1px solid var(--bg-color);
		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
------------------------------------------------------------ */
.bg__wrap{
	background-image: url(../img/bg.png);
	background-repeat: repeat-y;
	background-size: 100% auto;
	padding-bottom: 32px;
}
.mv__block{
	background-image: url(../img/sp-mv_bg.png);
	background-size: cover;
	padding: 10px 0 36px;
	background-position: bottom;
}
.mv__block h1{
	width: 90%;
	max-width: 445px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__block{
		background-image: url(../img/pc-mv_bg.png);
		padding: 16px 0 56px;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	padding: 16px 0 32px;
}
#menu h2{
	width: 310px;
	margin: 0 auto 16px;
}
.menu__list{
	padding: 0 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap {
    padding: 32px 0 56px;
}
	.menu__list{
		padding: 0;
		flex-direction: row;
		gap: 10px;
	}
	


}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
.sec__wrap{
	margin-bottom: 32px;
	padding: 16px 14px 24px;
	background-color: var(--bg-color);
	background-image: url(../img/cont01-head-bg.png),url(../img/bg-bottom.png);
	background-size: contain;
	background-repeat: no-repeat,no-repeat;
	background-position: top,bottom;
}
#point.sec__wrap{
	background-image: url(../img/cont02-head-bg.png),url(../img/bg-bottom.png);
}
#stamp.sec__wrap{
	background-image: url(../img/cont03-head-bg.png),url(../img/bg-bottom.png);
}
.sec__head{margin-bottom: 24px;}
.period{
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	width: fit-content;
	margin: 16px auto 0;
	background-color: var(--cont01-color);
	padding: 5px 20px;
	border-radius: 4px;
}
#point .period{background-color: var(--cont02-color);}
.sec__lead{margin-bottom: 16px;}
.sec__lead p{
	text-align: center;
	font-weight: bold;
	color: var(--cont01-color);
}
#point .sec__lead p{color: var(--cont02-color);}
#stamp .sec__lead p{color: var(--cont03-color);}
#voice .txt-link{color: var(--cont01-color);}
#point .txt-link{color: var(--cont02-color);}
#stamp .txt-link{color: var(--cont03-color);}

.note__list.bg-white,.txt-note.bg-white{
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.5);
} 
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap {
    padding: 40px 64px;
    background-image: url(../img/cont01-head-bg-pc.png), url(../img/bg-bottom-pc.png);
    max-width: 750px;
		margin: 0 auto 64px;
		box-sizing: border-box;
	}
	#point.sec__wrap{
		background-image: url(../img/cont02-head-bg-pc.png),url(../img/bg-bottom-pc.png);
	}
	#stamp.sec__wrap{
		background-image: url(../img/cont03-head-bg-pc.png),url(../img/bg-bottom-pc.png);
	}
	.sec__head{
		width: 400px;
		margin: 0 auto 32px;
		}
	.period{
		font-size: 16px;
		margin: 24px auto 0;
		padding: 5px 30px;
	}
	#point .period{background-color: var(--cont02-color);}
	.sec__lead{margin-bottom: 24px;}
	.sec__lead p {font-size: 20px;}
	.note__list.bg-white,.txt-note.bg-white{padding: 16px;} 
	.menu__list li,.btn__block,.bnr__list li{
		transition: all .5s;
	}
	.menu__list li:hover,.btn__block:hover,.bnr__list li:hover{
		transform: translateY(3px);
	}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.sec__txt01{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}
.sec__txt02{
	font-size: 14px;
	text-align: center;
}
#voice .acc__btn {
	background-color: var(--cont01-color);
}
#voice .acc__btn span::before, #voice .acc__btn span::after {
	background-color: var(--cont01-color);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__txt01,.sec__txt02 {
		font-size: 18px;
		margin-bottom: 24px;
	}
}


/* ------------------------------------------------------------
#point
------------------------------------------------------------ */
.point__list--block{
	margin-bottom: 24px;
}
.point__list{
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.point__list li{
	display: flex;
	gap: 6px;
	align-items: center;
}
.point__list li img{width: 36px;}
.point__list li p span{
	font-weight: bold;
	color: var(--red-color);
	border-top: 1px solid var(--accent-color);
	border-bottom: 1px solid var(--accent-color);
	padding: 2px;
	line-height: 1;
}
.point-detail__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.point-detail__list--item{
	background-color: #EFF6F8;
	padding: 16px 14px;
	border-radius: 4px;
}
.point-detail__list--lead{
	font-weight: bold;
	font-size: 13px;
	width: fit-content;
	margin: 0 auto 8px;
	position: relative;
}
.point-detail__list--lead::before,.point-detail__list--lead::after{
	display: block;
	content: "";
	width: 16px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
}
.point-detail__list--lead::before{
	background-image: url(../img/obj03.svg);
	left: -20px;
}
.point-detail__list--lead::after{
	background-image: url(../img/obj04.svg);
	right: -20px;
}
.point-detail__list--item h3{
	margin-bottom: 16px;
}
.point-detail__list--item .acc__btn{
	background-color: var(--cont02-color);
	border-radius: 0;
	width: calc(100% - 24px);
	padding: 4px 20px 4px 4px;
	text-align: center;
	font-size: 14px;
	line-height: 1.4;
}
.acc__btn span {
	right: 20px;
}
.point-detail__list--item .acc__btn span::before, .point-detail__list--item .acc__btn span::after {
	background-color: var(--cont02-color);
}
.tour__detail{
	background-color: var(--bg-color);
	border: 1px solid var(--cont02-color);
	padding: 14px;
}
.tour__detail--head{
	color: var(--cont02-color);
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}
.tour__detail--txt{
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.point-detail__img{
	position: relative;
}
.hamamatsu-img{
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
	padding-top: 24px;
}
.point-detail__img .wp1,.point-detail__img .wp2{
	position: absolute;
}
.point-detail__img .wp1{
	width: 80px;
	left: -8px;
}
.point-detail__img .wp2{
	width: 90px;
	right: -8px;
	bottom: -24px;
}
.present-img{
	width: 75%;
	max-width: 300px;
	margin: 0 auto;
	padding-top: 24px;
}
.item02 .wp2{width: 70px;}
.step__block{
	background-color: var(--bg-color);
	border: 1px solid var(--cont02-color);
	padding: 16px 14px;
	margin-bottom: 16px;
}
.step__block--head{
	color: var(--cont02-color);
	font-weight: bold;
	margin-bottom: 16px;
	text-align: center;
}
.step__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.step__list--head{
	background-color: var(--cont02-color);
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	border-radius: 20px;
	padding: 4px 16px;
	width: fit-content;
	margin: 0 auto 8px;
}
.step__list--txt{font-size: 14px;}
.pdf-btn {
	display: block;
	background-color: #fff;
	border: 3px solid var(--cont02-color);
	border-radius: 30px;
	color: var(--cont02-color);
	text-align: center;
	font-weight: bold;
	padding: 8px;
}
.pdf-btn span {position: relative;}
.pdf-btn span::after {
	display: block;
	content: "";
	width: 18px;
	height: 22px;
	background-image: url(../img/icon_pdf.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: -24px;
	top: 50%;
	transform: translateY(-50%);
}
#point .acc__btn {
	background-color: var(--cont02-color);
}
#point .acc__btn span::before, #point .acc__btn span::after {
	background-color: var(--cont02-color);
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.point__list--block {
		width: fit-content;
		margin: 0 auto 32px;
}
.point__list {
	gap: 12px;
	align-items: center;
}
.point__list li img {width: 60px;}
.point__list li p span {
	font-size: 20px;
	padding: 4px;
}
.point-detail__list--item {
	padding: 40px 64px;
}
.point-detail__list--lead {
	font-size: 18px;
	margin: 0 auto 12px;
}
.point-detail__list--lead::before, .point-detail__list--lead::after {
	width: 24px;
	height: 36px;
}
.point-detail__list--lead::before {left: -32px;}
.point-detail__list--lead::after {right: -32px;}
.point-detail__list--item h3 {
	max-width: 360px;
	margin: 0 auto 24px;
	margin-bottom: 16px;
}
#point .acc__btn {
	font-size: 16px;
}
.tour__detail {padding: 20px;}
.tour__detail--head {
	font-size: 18px;
	margin-bottom: 16px;
}
.tour__detail--txt {
	font-size: 16px;
}
.point-detail__img--block{
	max-width: 500px;
	margin: 0 auto;
}
.point-detail__img .wp1 {
	width: 100px;
	left: 32px;
}
.point-detail__img .wp2 {
	width: 110px;
	right: 16px;
	bottom: -42px;
}
.item02 .wp2 {
	width: 90px;
	bottom: -12px;
	right: 24px;
}
.step__block {
	padding: 20px;
	margin-bottom: 24px;
	text-align: center;
}
.step__block--head {
	margin-bottom: 16px;
	font-size: 18px;
}
.step__list--txt {
	font-size: 16px;
}
.pdf-btn {
	padding: 8px 80px;
	width: fit-content;
	margin: 0 auto 16px;
	transition: all .5s;
}
.pdf-btn:hover{
	transform: translateY(3px);
}
}

/* ------------------------------------------------------------
#stamp
------------------------------------------------------------ */
.spot__group{
	margin-bottom: 24px;
}
.spot__group .acc__btn span::before, #stamp .acc__btn span::after {
	background-color: var(--cont03-color);
}
.spot__group .acc__btn {
	background-color: var(--cont03-color);
	width: auto;
	border-radius: 0px;
	text-align: center;
	padding: 6px;
}
.spot__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.spot__list li {font-size: 12px;}
.spot__list--label {
	display: inline-block;
	width: 76px;
	text-align: center;
	margin-right: 8px;
	color: #fff;
	background-color: var(--cont03-color);
	border-radius: 16px;
	padding: 2px;
}
.star{color: var(--cont03-color);
}
.spot-img__block {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}
.spot-img__left {width: 47%;}
.spot-img__right {
	width: 51%;
	flex-shrink: 0;
}
.spot-img__right--txt {
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 8px;
}
.spot-img__right--txt span {color: var(--cont03-color);}
.img02__group {
	position: relative;
	padding-top: 32px;
}
.img02__group .img01 {
	width: 69px;
	position: absolute;
	top: -8px;
	right: 0;
}
.img02__group .img02 {
	width: 142px;
	position: relative;
	z-index: 1;
}
.stamp-detail__lead{
	text-align: center;
	font-weight: bold;
	color: var(--cont03-color);
}
.stampmount-btn__group{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.spot__group {
    margin-bottom: 40px;
} 
	.spot__list {
		gap: 8px;
		width: fit-content;
		margin: 0 auto 16px;
}
.spot__list li {
	font-size: 16px;
}
.spot__list--label {
	width: 108px;
	margin-right: 10px;
}
.spot__group .acc__body {
	margin-top: 16px;
}
.spot-img__block {
	width: 520px;
	margin: 0 auto 24px;
}
.spot-img__right--txt {
	font-size: 18px;
	margin-bottom: 16px;
}
.img02__group .img02 {
	width: 225px;
	margin: 0 auto;
}
.img02__group .img01 {
	width: 100px;
	top: -8px;
	right: -20px;
}
.stamp-detail__lead {
	font-size: 20px;
}
.stampmount-btn__group {
	flex-direction: row;
	gap: 16px;
	justify-content: center;
}
}

/* ------------------------------------------------------------
#banner
------------------------------------------------------------ */
.bnr__wrap{
	background: rgba(255, 255, 255, 0.6);
	padding: 16px 14px;
}
.bnr__head{
	padding-top: 55px;
	position: relative;
	margin-bottom: 16px;
}
.bnr__head::after{
	display: block;
	content: "";
	width: 200px;
	height: 50px;
	background-image: url(../img/bnr-cont-head.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.bnr__lead{
	font-weight: bold;
	text-align: center;
	position: relative;
	font-size: 18px;
	width: fit-content;
	margin: 0 auto;
}
.bnr__lead::before,.bnr__lead::after{
	display: block;
	content: "";
	width: 24px;
	height: 36px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
}
.bnr__lead::before{
	background-image: url(../img/obj01.svg);
	left: -30px;
}
.bnr__lead::after{
	background-image: url(../img/obj02.svg);
	right: -30px;
}
.bnr__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.bnr__wrap {
		max-width: 750px;
		padding: 40px 64px;
    box-sizing: border-box;
		margin: 0 auto;
}
.bnr__head {
	padding-top: 64px;
	margin-bottom: 24px;
}
.bnr__lead {font-size: 20px;}
.bnr__list {
	flex-direction: row;
	gap: 16px;
	justify-content: center;
}
}


/* ------------------------------------------------------------
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{
		width: 72px;
		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 {
	color: #fff;
	background-color: rgba(116, 110, 153, 0.7);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border-radius: 40px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 70%;
	display: flex;
	align-items: center;
  justify-content: center;
}
.cs.event-end-block {
	position: absolute;
	top: 47%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 93%;
	height: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}



