@charset "utf-8";

@import url("./animation.css");
@import url("./root.css");


.material-symbols {
	font-family: var(--ms);
}
/*====================================================================
　全体設定
====================================================================*/
html,body,header,footer,main,section,nav,div,ul,ol,li,a,p,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,label,input,textarea,span{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*--ベースとなるフォントサイズ 1rem=10px想定--*/
html{
	font-size: calc(1000vw / 375);
}
body {
	position: relative;
	background: var(--bg);
	color: var(--black);
	font-family: var(--main-font);
	font-size: 1.4rem;
	line-height: 1.5;
	min-height: 100dvh;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}
img {
	display: block;
	width: 100%;
}
a {
	color: var(--main-color);
}
ul{
	list-style-type: none;
}
.caution li,
.indent{
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}
.error {
	background: #fff;
	border: var(--red) solid 0.2rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin: 0.5rem auto;
	max-width: 35.5rem;
	color: var(--red);
	font-weight: 700;
	font-size: 1.4rem;
	text-align: center;
}


/*--下からせり上がり--
.scroll{
	opacity : 0;
	transform : translate(0, 5rem);
	transition : all 500ms;
}
.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}*/
/*--回りながら大きくなる--
.scroll{
	transform : rotateY(360deg) scale(0);
	transition : all 500ms;
	transform-origin: bottom;
}
.scrollin {
	transform : rotateY(0) scale(1);
}*/
/*--拡大--*/
.scroll{
	opacity : 0;
	transform : scale(0);
	transition : all 500ms;
}
.scrollin {
	opacity : 1;
	transform : scale(1);
}

.mt0{margin-top: 0!important;}
.mt05{margin-top: 0.5rem!important;}
.mt1{margin-top: 1rem!important;}
.mt15{margin-top: 1.5rem!important;}
.mt2{margin-top: 2rem!important;}
.mt3{margin-top: 3rem!important;}
.mt4{margin-top: 4rem!important;}
.mt5{margin-top: 5rem!important;}
.mb0{margin-bottom: 0!important;}
.mb05{margin-bottom: 0.5rem!important;}
.mb1{margin-bottom: 1rem!important;}
.mb15{margin-bottom: 1.5rem!important;}
.mb2{margin-bottom: 2rem!important;}
.mb3{margin-bottom: 3rem!important;}
.mb4{margin-bottom: 4rem!important;}
.mb5{margin-bottom: 5rem!important;}
.mr3{margin-right: 3rem!important;}
.center{text-align: center!important;}
.left{text-align: left!important;}
.right{text-align: right!important;}
.w-fit{width: fit-content;}
.w-50{width: 50%;}
.w-60{width: 60%;}
.w-70{width: 70%;}
.w-80{width: 80%;}
.w-90{width: 90%;}

/*--------------見出し-----------*/
h2{
	margin: 0 auto 3rem;
	text-align: center;
	color: var(--main-color);
}
* + h2{
	margin-top: 3rem;
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding: 2rem 0rem 12rem;
}
.block{
	padding: 2rem 0;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	background: #fff;
	border-radius: 1.3rem;
	padding: 3rem 1.5rem 4rem;
	width: 32.6rem;
	height: fit-content;
	min-height: calc(100dvh - 27.2rem);
	margin: 0 auto;
	box-shadow: 0 0.27rem 0.41rem rgba(147, 147, 147, 0.04);
}
body:has(footer) .content{
	min-height: calc(100dvh - 27.2rem - 9.8rem);
}
/*--アコーディオン--*/
.accordion{
	margin: 2rem auto 0;
}
.accordion_title,
.link_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white);
	border-top: var(--main-color) solid 0.4rem;
	margin: 0;
	padding: 1rem;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.accordion_title::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e313";
	font-size: 1.5em;
	font-weight: 400;
	right: 1rem;
	color: var(--main-color);
}
.accordion_title.active::after{
	transform: rotateZ(180deg);
}
.accordion_title img,
.link_title img{
	width: auto;
	height: 1.7rem;
	margin-right: 1.5rem;
}
.accordion_content{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem;
	transform-origin: top;
}
.accordion_content + .accordion_title{
	margin-top: 0.6rem;
}
.accordion_content.opne{
	display: block;
}
.link_title{
	text-decoration: none;
	color: var(--black);
}
.link_title::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e89e";
	font-size: 1.5em;
	font-weight: 300;
	right: 1rem;
	color: var(--main-color);
}

/*--------------------ボタン--------------------*/
button {
	appearance: none;
	background: none;
	border: none;
}
.button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--light-gray);
	border-radius: 100vw;
	width: 100%;
	max-width: 25.3rem;
	margin: auto;
	min-height: 4.9rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	transform: rotateZ(0deg);
}
.button span{
	display: flex;
	justify-content: center;
	align-items: center;
}
.button:disabled{
	background: var(--light-gray);
}
.bt_next::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 1rem;
}
.bt_back{
	background-color: var(--white);
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 10vw;
	max-width: 18.7rem;
	min-height: 3.4rem;
	padding: 0.5rem 0rem 0.3rem;
	color: var(--middle-gray);
	font-size: 1.6rem;
	font-weight: 400;
}
.bt_sumi{
	background-color: var(--middle-gray);
	color: #ddd;
}
.bt_outside::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e89e";
	font-weight: 300;
	font-size: 2.5rem;
	right: 1.5rem;
}
.bt_copy::after {
}
.bt_checkin::after {
	position: relative;
	font-family: var(--ms);
	content: "\e569";
	font-variation-settings: 'FILL' 1;
	font-weight: 500;
	font-size: 2.0rem;
	margin-left: 1rem;
}
.bt_qr::before{
	position: relative;
	background: url(../img/icon_btn_qr.svg) no-repeat center center/100% auto;
	content: "";
	width: 2.6rem;
	height: 2.6rem;
	margin-right: 1rem;
}
.bt_gift::before{
	position: absolute;
	background: url(../img/icon_btn_gift.svg) no-repeat center center/100% auto;
	content: "";
	width: 2.2rem;
	height: 2.2rem;
	left: 2rem;
}
.bt_coupon::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e53f";
	font-variation-settings: 'wght' 300;
	font-size: 2.4rem;
	left: 2rem;
}
.bt_cookie{
	background-color: var(--red);
}
/*--------------------色--------------------*/
.main_color{
	color: var(--main-color);
}
.red {
	color: var(--red)!important;
}
.bt_submit{
	background: var(--gradient1);
}
.bg_red{
	background-color: var(--red);
}
.bg_blue{
	background-color: var(--blue);
}
.bg_green{
	background-color: var(--green);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	position: relative;
	width: 100%;
}
/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	width: 100%;
	height: 11rem;
	left: 0;
	bottom: 0;
	z-index: 1001;
}
footer:has(#bt_menu:checked){
	filter: none;
}
footer.hide{
	display: none;
}
footer ul {
	position: absolute;
	display: flex;
	justify-content: center;
	background: #fff;
	border-top: var(--main-color) solid 0.4rem;
	width: 37.5rem;
	height: 9.8rem;
	margin-top: 1.2rem;
	left: calc(50% - (37.5rem / 2));
}
footer:has(.btn_qr) ul{
	height: 9.4rem;
	margin-top: 1.6rem;
}
footer li {
	position: relative;
	border-radius: 50%;
	flex-basis: 9rem;
	padding-top: 0.5rem;
	text-align: center;
}
footer:has(.btn_qr) li{
	flex-basis: 7rem;
}
footer li.btn_qr{
	background: linear-gradient(-15deg, var(--main-color) 0%, color-mix(in srgb, var(--main-color) 70%, var(--white)));
	border-radius: 50%;
	flex-basis: 9rem;
	height: 9rem;
	padding: 0;
	filter: drop-shadow(0 0.3rem 1.6rem rgba(0, 0, 0, 0.21));
	bottom: 1.2rem;
	z-index: 1;
}
footer li.btn_qr img,
footer li.btn_qr svg{
	width: 100%;
}
footer li a{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.2rem;
	height: 100%;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--black);
	text-decoration: none;
}
footer li.btn_qr a{
	font-weight: 500;
	color: var(--white);
}
footer li a img{
	width: 6.0rem;
	margin: 0 auto;
}
footer li a svg{
	width: 6.0rem;
	margin: 0 auto;
}
footer li a svg .st0{
	fill: var(--main-color);
}
footer li a svg .st1{
	fill: #6b7477;
}
footer li a svg .st3{
	fill: #fff;
}

.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.menu-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	z-index: 2;
}
.menu-btn span.menubtn,
.menu-btn span.menubtn:before,
.menu-btn span.menubtn:after {
	position: absolute;
	display: block;
	background-color: var(--main-color);
	border-radius: 10vw;
	height: 0.2rem;
	width: 1.6rem;
	content: '';
	transition: all 500ms;
	transition-timing-function: ease-in-out;
}
.menu-btn span.menubtn{
	top: 32%;
}
.menu-btn span.menubtn:before {
	background-color: #6B7477;
	bottom: 0.5rem;
}
.menu-btn span.menubtn:after {
	background-color: #6B7477;
	top: 0.5rem;
}
.menu span.menutext{
	position: absolute;
	display: block;
	bottom: 1.6rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--black);
}
footer:has(.btn_qr) .menu span.menutext{
	bottom: 1.2rem;
}

#bt_menu:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
	transform: rotate(180deg);
}
#bt_menu:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(135deg);
}
#bt_menu:checked ~ .menu-btn span::after {
	background-color: var(--sys-color);
	top: 0;
	transform: rotate(225deg);
}
#bt_menu:checked ~ .menu-btn span.menutext {
	transform: none;
}
#bt_menu {
	display: none;
}
.menu-content {
	position: fixed;
	background: rgba(0 ,0 ,0 ,0.5);
	width: 100%;
	height: calc(100dvh - 9.8rem);
	top: 0;
	left: 0;
	transition: all 0.1s;
	transform: translateX(100vw);
	transition-timing-function: linear(0, 0.30, 0.50, 0.65, 1);
}
footer:has(.btn_qr) .menu-content{
	height: calc(100dvh - 9.4rem);
}
footer .menu-content ul {
	display: block;
	border: none;
	width: 70%;
	height: 100%;
	left: auto;
	right: 0;
	top: 0;
	margin: 0;
	padding: 0 2rem;
	overflow-y: auto;
}
footer .menu-content ul li {
	background: transparent;
	border: none;
	border-radius: 0;
	border-bottom: var(--border1);
	width: 100%;
	height: auto;
	box-shadow: none;
	filter: none;
}
footer .menu-content ul li:last-of-type{
	border: none;
}
footer .menu-content ul li a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	padding: 1.5rem 3rem 1.5rem 0.5rem;
	font-size: 1.4rem;
	color: var(--black);
	text-decoration: none;
}
footer .menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.0rem;
	font-weight: 400;
	right: 1rem;
	color: var(--main-color);
}
.menu-content ul li a.outside::after{
	content: "\e89e";
}
#bt_menu:checked ~ .menu-content {
	transform: translateX(0);
}
/*====================================================================
　規約・概要
====================================================================*/
.rule p{
	margin-bottom: 2rem;
}
.rule dt{
	background: var(--pale);
	padding: 0.2rem;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
}
.rule dd{
	margin-bottom: 2rem;
	padding: 1rem 0 0;
	word-break: break-all;
}
.rule dd div{
	background: var(--pale);
	margin: 0.5rem 0;
	padding: 1rem;
	font-size: 1.3rem;
}
.rule li {
	padding-left: 1em;
	text-indent: -1em;
}
.rule * + ul,
.rule * + li{
	margin-top: 1rem;
}

/*------初回アクセス時-----*/
.attention {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100vh;
	padding: 2rem;
	top: 0;
	left: 0;
	text-align: center;
	overflow-y: auto;
}
.attention .inner{
	display: none;
	background: #fff;
	border-top: var(--main-color) solid 0.4rem;
	border-bottom: var(--main-color) solid 0.4rem;
	width: 32.6rem;
	padding: 2rem;
	margin-bottom: 2rem;
	overflow-y: scroll;
	overflow-x: hidden;
}
.attention .inner.active{
	display: block;
}
.attention img{
	background: #F5F5F5;
	border-radius: 1.3rem;
	width: 28.8rem;
	margin: 1.3rem auto;
}
.attention .step{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 5.5rem auto 2.7rem;
	font-size: 1.0rem;
	color: #ddd;
}
.attention .step .active{
	color: var(--main-color);
}
.attention p{
	margin: 1.3rem auto;
	text-align: left;
}
.attention ul{
	text-align: left;
}
.attention li{
	padding-left: 1em;
	text-indent: -1em;
}

body:has(.entry) .content{
	min-height: calc(100dvh - 27.2rem - 10.2rem);
}
.entry label input[type="radio"]{
	display: none;
}
.entry label:has(input[type="radio"]){
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 9.1rem;
	height: 3.4rem;
	margin-right: 0.7rem!important;
}
.entry label:has(input[type="radio"]:checked){
	background: var(--main-color);
	border: var(--main-color) solid 0.1rem;
	color: #fff;
}
.entry select{
	width: 100%;
}
.entry .caution{
	background: var(--pale);
	border-radius: 1.3rem;
	padding: 1.3rem;
	margin-bottom: 2.8rem;
}
.entry .text_link{
	display: block;
	margin: 2.8rem auto 0;
	text-align: center;
	color: var(--middle-gray);
}
.entry .bt_submit{
	margin-top: 3rem;
}
.entry .bt_back{
	margin-top: 3rem;
}
.entry h3{
	text-align: center;
}
.entry p a{
	position: relative;
}
.entry p a::after{
	position: relative;
	font-family: var(--ms);
	content: "\e89e";
	top: 0.2rem;
	margin-left: 0.2rem;
}


/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	padding: 3.2rem 2.4rem;
	text-align: center;
}

/*--------------------ユーザー情報--------------------*/
.info{
	position: relative;
}
.info .name {
	margin-bottom: 0.7rem;
	font-size: 1.6rem;
	font-weight: 700;
}
.info .name small{
	font-size: 1.4rem;
}
.info .myno {
	font-size: 1.4rem;
	color: #9B9B9B;
}

/*--------------------トピックス--------------------*/
.topics_top{
	margin: 2.4rem auto;
}
.topics_top ul{
	background: #F8F8F8;
	border-radius: 1.3rem;
	width: 100%;
	padding: 0 1.6rem;
}
.topics_top li{
	position: relative;
	text-align: left;
}
.topics_top li + li{
	border-top: var(--light-gray) solid 0.1rem;
}
.topics_top li a{
	position: relative;
	display: block;
	padding: 1.6rem 2rem 1.6rem 0;
	color: var(--fc1);
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.topics_top li::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.0rem;
	font-weight: 400;
	right: 0;
	top: 1.0rem;
	color: var(--main-color);
	pointer-events: none;
}
.topics_top li span{
	margin-right: 1.6em;
	font-size: 1.1rem;
	color: var(--middle-gray);
}
.topics_link{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 1.2rem 0 0 auto;
	font-size: 1.3rem;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	color: var(--main-color);
	text-decoration: none;
}
.topics_link::after{
	position: relative;
	font-family: var(--ms);
	content: "\ea50";
	font-size: 1.4em;
}

/*--------------------スタンプ一覧--------------------*/
.stamp-list {
	position: relative;
}
/* ポイント表示 */
.point,
.stamp_count {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 1rem;
	background: #fff;
	height: 5.9rem;
	border-radius: 10vw;
	font-weight: 700;
	padding: 1.5rem 3rem;
	margin: 2rem auto;
	box-shadow: 0 1.0rem 1.0rem rgba(0, 0, 0, 0.05);
}
.point span:nth-of-type(1),
.stamp_count span:nth-of-type(1){
	display: block;
	height: 100%;
	padding-bottom: 1rem;
	margin-right: auto;
	font-size: 1.3rem;
	color: var(--main-color);
}
.point span:nth-of-type(2),
.stamp_count span:nth-of-type(2){
	margin-left: auto;
	font-size: 2.0rem;
}
.point span:nth-of-type(3),
.stamp_count span:nth-of-type(3){
	font-size: 1.7rem;
	color: var(--middle-gray);
}

.stamp-list .category{
	display: flex;
	justify-content: space-between;
	margin-top: 4.7rem;
	font-size: 1.3rem;
	font-weight: 700;
}
.stamp-list .category span{
	font-size: 2.0rem;
	font-variation-settings: 'FILL' 1;
	color: var(--main-color);
}
.stamp-list .category button:nth-of-type(1) span{
	transform: scale(-1,1);
}
.stamp-list .category button:disabled{
	opacity: 0;
}
.stamp-list .pagination ul{
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 1rem auto 0;
}
.stamp-list .pagination li{
	width: fit-content;
}
.stamp-list .pagination li a{
	text-decoration: none;
	color: var(--middle-gray);
}
.stamp-list .pagination li.selected a{
	color: var(--pink);
}

.stamp-list .inner{
	border-radius: 2.0rem;
	padding: 0 2.0rem 3.6rem;
	box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.09);
}
.stamp-list .stamp_count{
	border-bottom: var(--light-gray) solid 0.1rem;
	border-radius: 0;
	padding: 1.5rem 0;
	box-shadow: none;
}

.stamp-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
	margin-top: 2rem;
}
.stamp-list li {
	display: -webkit-box;
	width: calc((100% - 2.2rem) / 3);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 1.2rem;
	font-weight: 500;
}
.stamp-list ul.clumn4 li{
	width: calc((100% - 3.3rem) / 4);
}
.stamp-list ul.clumn5 li{
	width: calc((100% - 4.4rem) / 5);
}
.stamp-list li a{
	text-decoration: none;
	color: var(--black);
}
.stamp-list li img{
	margin-bottom: 0.7rem;
}
/*--------------------リンクバナー--------------------*/
.link_banner{
	display: block;
	margin: 2rem auto;
}

/*--------------------シェア--------------------*/
.share{
}
.share .copyTarget{
	border-radius: 2.0rem;
	margin: 3.8rem auto 1.5rem;
	padding: 2rem 1rem;
	font-size: 1.4rem;
	box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.09);
}
.share button{
	appearance: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white);
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 10vw;
	width: fit-content;
	padding: 0.5rem 1rem;
	margin: 1.5rem auto 0;
	color: var(--middle-gray);
}
.share button span.bt_copy{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
}
.share button span.bt_copy::after{
	position: relative;
	background: url(../img/icon_copy.svg) no-repeat center center/100% auto;
	content: "";
	width: 1.2rem;
	height: 1.1rem;
	margin-left: 1rem;
}
.share ul {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0 0;
	padding: 0;
}
.share li {
	position: relative;
	border-radius: 50%;
	width: 3.0rem;
}
.share li a img{
	position: relative;
	width: 3.0rem;
}



/*====================================================================
　全体マップ画面
====================================================================*/
body:has(#message_placeholder){
	border: #fff solid 0.3rem;
}
video {
	position: absolute;
	width: calc(100vw - 0.6rem);
	height: calc(100dvh - 0.6rem);
	left: 0;
	top: 0;
	object-fit: cover;
}
canvas {
	display: none;
	object-fit: scale-down;
}
#message_placeholder {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#message_placeholder>* {
	position: absolute;
}
#message {
	display: none;
	position: absolute;
	width: 100%;
}
#message div {
	position: relative;
	left: 0;
	top: 0;
	padding: 1.5rem 0.5rem;
	text-align: center;
	font-size: 90%;
	font-weight: bold;
	background-color: rgba(238, 238, 238, 0.5);
	border: #808080 solid 0.1rem;
	border-radius: 1rem;
	margin: 1rem;
}
#loading {
	width: 100%;
	text-align: center;
	color: grey;
	padding-top: 10rem;
}
#error {
	margin: 0.5rem;
	display: none;
}


.map{
	display: none;
}
main:has(.tab .tab1.active) .map{
	display: block;
}
#map,
.map_content{
	height: calc(100dvh - 5rem - 9.4rem)!important;
	/* overflow: scroll; */
}
.map:has(.map_category) .map_content{
	height: calc(100dvh - 5rem - 6.7rem - 9.8rem);
	overflow: scroll;
}
.map .map_category{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white);
	height: 6.7rem;
	padding: 0 0.5rem;
	font-size: 1.3rem;
	font-weight: 700;
}
.map .map_category .swiper-button-prev,
.map .map_category .swiper-button-next{
	position: relative;
	display: block;
	background: none;
	margin: 0 0 0 auto;
	padding: 0;
	height: 2.0rem;
	right: auto;
	left: auto;
	top: auto;
	font-size: 2.0rem;
	font-variation-settings: 'FILL' 1;
	color: var(--main-color);
	z-index: 5;
}
.map .map_category .swiper-button-prev{
	margin: 0 auto 0 0;
}
.map .map_category .swiper-button-prev{
	transform: scale(-1,1);
}
.map .map_category button:disabled{
	opacity: 0;
}
.map .map_category .swiper-container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 29.9rem;
	overflow: hidden;
}
.map .map_category ul.swiper-wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 29.9rem;
}
.map .map_category li{
	background-color: var(--light-gray);
	border-radius: 0.5rem;
	width: 8.5rem;
	min-width: 9.5rem;
	max-width: 9.5rem;
	height: 3.4rem;
	color: var(--middle-gray);
}
.map .map_category li label{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0.2rem 0.5rem;
	line-height: 1;
}
.map .map_category li input[type="checkbox"]{
	display: none;
}
.map .map_category li:has(input[type="checkbox"]:checked){
	background: var(--main-color);
	color: var(--white);
}


.illust_map{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 3rem 1rem;
	height: calc(100dvh - 5rem - 9.8rem);
	overflow: scroll;
}
.illust_map .inner{
	border-radius: 1.3rem;
	box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.09);
}
.illust_map .inner img{
	border-radius: 1.3rem;
}
.illust_map p{
	margin-top: 2rem;
	text-align: center;
}
.illust_map .leaflet-container{
	border-radius: 1.3rem;
}


/*====================================================================
　対象地点一覧
====================================================================*/
.tab {
	display: flex;
	justify-content: center;
}

.tab div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F8F8F8;
	width: 50%;
	height: 5.0rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}
.tab div a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.tab1 a::before{
	position: relative;
	font-family: var(--ms);
	content: "\e55b";
	font-size: 2.2rem;
	font-variation-settings: 'wght' 300;
	left: -0.5rem;
}
.tab2 a::before{
	position: relative;
	font-family: var(--ms);
	content: "\e834";
	font-size: 2.2rem;
	font-variation-settings: 'wght' 300;
	left: -0.5rem;
}
.tab div.active {
	background: var(--white);
}
.tab div.active::after{
	position: absolute;
	background: var(--main-color);
	content: "";
	width: 5.6em;
	height: 0.4rem;
	bottom: 0;
}
.spot-list{
	display: none;
	background: var(--white);
	min-height: calc(100dvh - 3.6rem);
	padding-bottom: 12rem;
}
main:has(.tab .tab2.active) .spot-list{
	display: block;
}
.spot-list form{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.1rem;
	background: var(--white);
	height: 6.7rem;
	font-size: 1.3rem;
	font-weight: 700;
}
.spot-list form select{
	position: relative;
	width: 16.0rem;
	text-align: center;
	font-size: 1.4rem;
}
.spot-list ul{
	padding: 0 2.2rem;
}
.spot-list li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-top: var(--light-gray) solid 0.1rem;
	padding: 1.7rem 0;
}
.spot-list li:nth-of-type(1){
	border: none;
}
.spot-list:has(form) li:nth-of-type(1){
	border-top: var(--light-gray) solid 0.1rem;
}
.spot-list li img{
	border-radius: 0.5rem;
	width: 6.3rem;
	min-width: 6.3rem;
	height: 6.3rem;
	min-height: 6.3rem;
	margin-bottom: auto;
	object-fit: cover;
}
.spot-list li a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	padding: 0 2.5rem 0 3.0rem;
	width: 100%;
	color: #333;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}
.spot-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\f591";
	font-variation-settings: 'FILL' 1;
	color: var(--main-color);
	right: 0;
	font-size: 2.2rem;
}
.spot-list li a .detail{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem 1.1rem;
}
.spot-list li a .spot-name{
	width: 100%;
	font-size: 1.4rem;
}
.spot-list li a span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border: color-mix(in srgb, var(--main-color) 50%, transparent) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.3rem 1rem 0.2rem;
	font-size: 1.2rem;
	font-weight: 500;
	word-break: keep-all;
}
.spot-list li a span.area{
	background-color: color-mix(in srgb, var(--main-color) 50%, #fff 50%);
	border-color: color-mix(in srgb, var(--main-color) 50%, #fff 50%);
	color: var(--white);
}
.area1{
	background-color: color-mix(in srgb, var(--red) 50%, #fff 50%)!important;
	border-color: color-mix(in srgb, var(--red) 50%, #fff 50%)!important;
}
.area2{
	background-color: color-mix(in srgb, var(--green) 50%, #fff 50%)!important;
	border-color: color-mix(in srgb, var(--green) 50%, #fff 50%)!important;
}
.area3{
	background-color: color-mix(in srgb, var(--orange) 50%, #fff 50%)!important;
	border-color: color-mix(in srgb, var(--orange) 50%, #fff 50%)!important;
}
.area4{
	background-color: color-mix(in srgb, var(--blue) 50%, #fff 50%)!important;
	border-color: color-mix(in srgb, var(--blue) 50%, #fff 50%)!important;
}
.area5{
	background-color: color-mix(in srgb, var(--pink2) 50%, #fff 50%)!important;
	border-color: color-mix(in srgb, var(--pink2) 50%, #fff 50%)!important;
}
.category{
	color: var(--sys-color);
}
.category1{
	border-color: var(--red)!important;
	color: var(--red)!important;
}
.category2{
	border-color: var(--green)!important;
	color: var(--green)!important;
}
.category3{
	border-color: var(--orange)!important;
	color: var(--orange)!important;
}
.category4{
	border-color:  var(--blue)!important;
	color: var(--blue)!important;
}
.category5{
	border-color: var(--pink2)!important;
	color: var(--pink2)!important;
}
.spot-list .coupon,
.spot .coupon{
	background-color: color-mix(in srgb, var(--sys-color) 50%, transparent)!important;
	border-color: var(--sys-color)!important;
	color: var(--white)!important;
	width: auto!important;
	min-height: auto!important;
	margin: 0!important;
}
.spot-list .gettime,
.spot .gettime{
	border-color: var(--sys-color)!important;
	color: var(--fc1)!important;
}
.spot-list .pt{
	border-color: #ffc402;
}
.spot-list .pt::before{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffc402;
	border-radius: 50%;
	content: "P";
	width: 1.4rem;
	height: 1.4rem;
	margin-right: 0.5rem;
	font-size: 1.0rem;
	font-weight: 700;
	color: #fff;
}
.checked::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e834";
	font-variation-settings: 'FILL' 1;
	left: 0rem;
	font-size: 1.4em;
	font-weight: 400;
	color: color-mix(in srgb, var(--main-color) 50%, transparent);
}
.nocheck::before{
	position: absolute;
	font-family: var(--ms);
	content: "\eb36";
	font-variation-settings: 'FILL' 1;
	left: 0rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--light-gray);
}


/*====================================================================
　地点詳細画面
====================================================================*/
.message-unacquired {
	margin: 0 auto 2rem;
	color: var(--red);
	font-weight: 700;
	text-align: center;
}
.message-sumi {
	margin: 0 auto 2rem;
	color: #999;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.message-gps {
	border: 0.2rem solid #eee;
	padding: 0.5rem;
	margin: 2rem;
	font-size: 1.2rem;
}
.spot .bt_qr{
	margin: 0 auto 2rem;
}

.spot{
	background: #fff;
	border-radius: 1.3rem;
	width: calc(100% - 4rem);
	min-height: calc(100dvh - 22rem);
	padding: 0 0 4rem;
	margin: auto;
	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.1);
}
.spot .pt{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin: -1.5rem auto 2rem;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--fc1);
	line-height: 1;
}
.spot .pt small{
	font-size: 1.4rem;
}
.spot .pt::before{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffc402;
	border-radius: 50%;
	content: "P";
	width: 2rem;
	height: 2rem;
	top: -0.2rem;
	margin-right: 0.5rem;
	font-size: 1.4rem;
	color: var(--fc2);
}
.spot-img img{
	position: relative;
	border-radius: 1.3rem 1.3rem 0 0;
}
.spot .spot-name{
	padding: 2rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
}
.spot .category{
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2rem;
	padding: 0 2rem;
}
.spot .category span{
	display: flex;
	justify-content: center;
	align-items: center;
	border: color-mix(in srgb, var(--main-color) 50%, transparent) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.2rem 1rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
	word-break: keep-all;
}
/* .spot .category span:nth-of-type(1){
	border-color: var(--middle-gray);
} */
.spot-detail {
	background: var(--pale);
	border-radius: 1.3rem;
	margin: 0 auto 2rem;
	padding: 1rem;
	width: 29.5rem;
	text-align: left;
}
.spot-detail table{
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}
.spot-detail tr + tr{
	border-top: var(--light-gray) solid 0.1rem;
}
.spot-detail th,
.spot-detail td {
	box-sizing: border-box;
	word-break: break-all;
	padding: 1em 0;
}
.spot-detail th {
	width: 6em;
	text-align: center;
	color: var(--middle-gray);
	font-size: 1.2rem;
	font-weight: 400;
}
.spot-detail td{
	line-height: 1.2;
}
.spot-detail td span{
	display: inline-block;
	margin-left: 0.5em;
	font-size: 1.1em;
}
.spot-detail td a{
	color: var(--dark-gray);
	text-decoration: none;
}
.spot-detail td a.g-map{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 10vw;
	margin-top: 1rem;
	padding: 0.5rem 1.5rem 0.3rem;
	color: var(--middle-gray);
	line-height: 1;
}
.spot-detail td a.g-map::after{
	position: relative;
	font-family: var(--ms);
	content: "\e89e";
	margin-left: 0.5rem;
}
.spot-trivia{
	padding: 2rem;
	line-height: 1.7;
}
.spot-trivia:empty{
	display: none;
}
.spot .coupon_data{
	margin: 3rem auto;
}
.spot .coupon_data .coupon_img{
	position: relative;
	padding: 0 2rem;
}
.spot .coupon_data .sumi img{
	filter: grayscale(1);
}
.spot .coupon_data .sumi:after{
	position: absolute;
	content: "利用済み";
	background: rgba(255,255,255,0.8);
	border: var(--red) solid 0.3rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--red);
	left: calc(50% - 6rem);
	top: calc(50% - 5.5rem / 2);
	transform: rotate(-15deg);
}
.spot .coupon_data .coupon-title{
	padding: 2rem 0 0;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
}
.spot .coupon_data .coupon-text{
	padding: 2rem;
}



/*====================================================================
　賞品一覧（個別ページ）
====================================================================*/
.prize{
	padding: 2rem 2rem 4rem;
}
.prize li {
	border-radius: 2rem;
	box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.09);
	padding: 0 0 3rem;
}
.prize li + li {
	margin-top: 3rem;
}
.prize li .terms{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: var(--pale);
	border-radius: 2rem 2rem 0 0;
	padding: 2rem;
}
.prize li .terms .terms_text{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}
.prize li .terms .terms_text span{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: var(--border2);
	border-radius: 0.5rem;
	padding: 0.5rem 0.5rem;
	top: -0.1rem;
	font-size: 1.3rem;
	color: var(--main-color);
	word-break: keep-all;
}
.prize li .terms .progress,
.prize li .terms .achieve{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white);
	border: var(--pale) solid 0.5rem;
	border-radius: 0 2rem 0 0;
	width: 10.6rem;
	min-width: 10.6rem;
	margin-left: auto;
	font-size: 2.4rem;
}
.prize li .terms .achieve{
	border-radius: 0;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--main-color);
}
.prize li .terms .progress span{
	font-size: 1.6rem;
	color: var(--middle-gray);
}
.prize li .terms .progress small{
	font-size: 1.4rem;
}
.prize img{
	margin-bottom: auto;
	object-fit: contain;
}
.prize-title {
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--main-color);
}
.prize_name {
	padding: 1.5rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
}
.prize li .prize_detail{
	padding: 0 2rem;
	margin: 1.2rem auto 1.5rem;
	line-height: 1.7;
}


/*====================================================================
　引き換え画面
====================================================================*/
.exchange {
	background: #fff;
	border-radius: 1.3rem;
	padding: 3rem 0 4rem;
	width: 32.6rem;
	height: fit-content;
	min-height: calc(100dvh - 27.2rem);
	margin: 0 auto;
	box-shadow: 0 0.27rem 0.41rem rgba(147, 147, 147, 0.04);
}
.exchange .title {
	display: inline-block;
	background: #999;
	border-radius: 100vw;
	padding: 0.5rem 1rem;
	margin: 2rem auto 0.5rem;
	color: #fff;
	font-weight: 700;
}
.exchange .caution {
	background: var(--pale);
	border-radius: 1.3rem;
	width: 28.8rem;
	padding: 2rem;
	margin: 2rem auto 3rem;
	text-align: left;
}
.exchange-btn label {
	display: block;
	margin-top: 1rem;
	text-align: center;
	font-weight: 700;
}
.exchange .bt_submit{
	margin: 3rem auto 3rem
}



/*====================================================================
　引き換え完了画面
====================================================================*/
.exchange-img {
	position: relative;
	margin: 2rem auto;
}
.exchange-img.sumi img{
	animation: grayscale 0.4s 0.8s linear both, brightness 0.4s 0.8s linear both;
}
.exchange-img.sumi::after {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--white) solid 0.1rem;
	content: "引換済";
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	top: 1rem;
	left: 1rem;
	font-size: 4.0rem;
	font-weight: 700;
	color: var(--white);
	text-shadow: 0 0 0.2rem rgba(0 ,0 ,0 ,0.5);
	animation: scale-down-center 0.4s 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both,fade-in 0.4s 0.8s linear both;
}

.exchange-result {
	background: var(--pale);
	border-radius: 1.3rem;
	width: 28.8rem;
	padding: 2rem;
	margin: 2rem auto 3rem;
	text-align: center;
}
.exchange p{
	text-align: center;
}
.exchange p b{
	display: block;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}


/*====================================================================
	クーポン
====================================================================*/
.coupon{
	background: #fff;
	border-radius: 1.3rem;
	padding: 3rem 0 4rem;
	width: 32.6rem;
	height: fit-content;
	min-height: calc(100dvh - 27.2rem);
	margin: 0 auto;
	box-shadow: 0 0.27rem 0.41rem rgba(147, 147, 147, 0.04);
	text-align: center;
}
.coupon .coupon_data{
	position: relative;
	margin: 3rem auto;
}
.coupon .coupon_data .coupon_img{
	position: relative;
	padding: 0 2rem;
}
.coupon .coupon-title{
	margin: 2rem auto 0;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--main-color);
}
.coupon .coupon_data .coupon-text{
	margin: 1rem auto 0;
	padding: 0 2rem;
	text-align: left;
}
.coupon .bt_submit{
	margin: 3rem auto 3rem
}
.coupon .sumi img{
	animation: grayscale 0.5s 1.2s ease-in-out both;
}
.coupon .sumi:after{
	position: absolute;
	content: "利用済み";
	background: rgba(255,255,255,0.8);
	border: var(--red) solid 0.3rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--red);
	left: calc(50% - 6rem);
	top: calc(50% - 5.5rem / 2);
	animation: scale-down 0.5s 1.2s ease-in-out both;
}
@keyframes scale-down{
	0%{opacity: 0; transform: scale(3) rotate(0);}
	100%{opacity: 1; transform: scale(1) rotate(-15deg);}
}
.coupon-detail{
	margin: 2rem auto;
	padding: 0 0.5rem;
	text-align: left;
}
.coupon .caution {
	background: var(--pale);
	border-radius: 1.3rem;
	width: 28.8rem;
	padding: 2rem;
	margin: 2rem auto 3rem;
	text-align: left;
}
.coupon-result {
	background: var(--pale);
	border-radius: 1.3rem;
	width: 28.8rem;
	padding: 2rem;
	margin: 2rem auto 0;
}
.coupon-result dt{
	color: var(--middle-gray);
	font-weight: 700;
}
.coupon-result dd + dt{
	margin-top: 1rem;
}
.coupon-result dd{
	font-size: 1.8rem;
}
/*====================================================================
　スタンプ取得画面設定
====================================================================*/
body:has(.getstamp) header{
	position: absolute;
	left: 0;
	top: 0;
}
.getstamp {
	position: relative;
	background: rgba(0,0,0,0.3);
	width: 100%;
	min-height: 100dvh;
	padding: 4.0rem 2.5rem;
	left: 0;
	top: 0;
	z-index: 10;
}
.getstamp .inner{
	background: #fff;
	border-top: var(--main-color) solid 0.4rem;
	border-bottom: var(--main-color) solid 0.4rem;
	width: 32.6rem;
	padding: 3rem 0 4rem;
	margin-bottom: 2rem;
	text-align: center;
}
#particlesjs{
}
canvas{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	pointer-events: none;
	animation: fade-in 0.4s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.stampget{
	position: relative;
	background-image: var(--bg_getpoint);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	z-index: 1;
	animation: scale-up-center 0.4s 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.pointget{
	position: relative;
	background-image: var(--bg_getpoint);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	z-index: 1;
	animation: scale-up-center 0.4s 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img {
	position: relative;
	z-index: 1;
}
.getstamp .stamp-img img{
	width: 15rem;
	height: 15rem;
	margin: 0.5rem auto 3.5rem;
	animation: scale-up-center 0.4s 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img.anime2 img{
	/* animation: scale-down-center 0.4s 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275) both, fade-in 0.2s 0.4s linear both; */
	animation: rotate-vert-reverse-rhythm 1.5s both;
}
.getstamp .stamp-img.anime3 img{
	/* animation: rotate-vert-reverse-rhythm 1.5s 0.2s cubic-bezier(0.175, 0.885, 0.320, 1.275) both, fade-in 0.2s 0.4s linear both; */
	animation: twisterInDown 1.0s both;
}
.getstamp .point-img {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0.5rem auto 3.5rem;
	font-size: 7rem;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1.1;
	z-index: 1;
	animation: scale-up-center 0.4s 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .point-img small{
	font-size: 6.0rem;
}
.getstamp .point-img span:nth-of-type(2){
	font-size: 5.5rem;
}

.getstamp .spot-title {
	margin: -2rem auto 2rem;
	padding: 0 2rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--main-color);
	z-index: 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message {
	position: relative;
	margin: 0 auto 3.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	z-index: 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .correct {
	margin: -2rem auto -1rem;
	padding: 0 1rem;
	z-index: 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .correct img{
	width: 80%;
	margin: 0 auto;
}
.getstamp .commentary {
	position: relative;
	margin: 0 auto 3.5rem;
	padding: 0 2rem;
	font-weight: 500;
	text-align: left;
	z-index: 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp:has(.congrats) .message,
.getstamp:has(.commentary) .message,
.getstamp:has(.congrats) .commentary {
	margin: 0 auto 1.5rem;
}
.getstamp .congrats {
	position: relative;
	margin: 0 auto 2.5rem;
	font-weight: 700;
	z-index: 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats strong{
	display: block;
	margin: 1rem auto;
	font-size: 2.4rem;
	color: var(--red);
}

.getstamp .button {
	margin: 1.5rem auto;
	z-index: 1;
}

.getstamp .bt_back {
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/*====================================================================
　クイズ出題画面
====================================================================*/
.quiz img{
	position: relative;
	border-radius: 1.3rem 1.3rem 0 0;
	width: 32.6rem;
	margin: -3rem auto 0;
	left: calc(50% - 32.6rem / 2);
}
.quiz h2{
	margin-top: 0;
}
.quiz:has(.quiz_img) h2{
	padding: 2rem;
	margin: 0 auto;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
}
.quiz .question {
	padding: 0 2rem;
	margin-bottom: 2rem;
	font-weight: 500;
}
.quiz .answer {
	margin: 3rem auto;
}
.quiz input[type="radio"] {
	display: none;
}
.quiz label {
	display: block;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 90%;
	padding: 1.5rem;
	margin: 0 auto 2rem;
	text-align: center;
	font-weight: 700;
	transition: .1s;
}
.quiz input[type="radio"]:checked + label {
	background: var(--main-color);
	color: #fff;
}
.quiz .button{
	pointer-events: none;
}
.quiz:has(input[type="radio"]:checked) .button{
	background: var(--gradient1);
	pointer-events: all;
}

/*--------------------ハズレポップアップ--------------------*/
.hazure {
	display: none;
	position: fixed;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	padding: 1.8rem;
	top: 0;
	left: 0;
	text-align: center;
	z-index: 210;
}
.hazure div {
	background: #fff;
	border-radius: 1rem;
	padding: 1rem 1rem 3rem;
	text-align: center;
}
.hazure .fuseikai {
	padding: 1rem;
}
.hazure .fuseikai img{
	width: 80%;
	margin: 0 auto;
}
.hazure .message {
	font-weight: 700;
}
.hazure .close{
}


/*====================================================================
　抽選結果画面
====================================================================*/
body:has(.lot) header{
	position: absolute;
	left: 0;
	top: 0;
}
body:has(.lot) h2{
	margin-bottom: 1rem;
}
.lot {
	position: relative;
	background: rgba(0,0,0,0.3);
	width: 100%;
	min-height: 100dvh;
	padding: 4.0rem 2.5rem;
	left: 0;
	top: 0;
	z-index: 10;
}
.lot .inner{
	background: #fff;
	border-top: var(--main-color) solid 0.4rem;
	border-bottom: var(--main-color) solid 0.4rem;
	width: 32.6rem;
	padding: 3rem 0 4rem;
	margin-bottom: 2rem;
	text-align: center;
}
.lot-img{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
	z-index: 2;
	overflow: hidden;
}
.lot-img img{
	width: 100%;
	margin: auto;
}
.atari img{
	animation: scale-up-center 0.4s 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.atari::before{
	position: absolute;
	background: url(../img/bg_result.png) no-repeat center center/contain;
	content: "";
	width: 32.6rem;
	height: 32.6rem;
	z-index: -1;
	animation: rotate-center 4s linear infinite both, fade-in 0.4s 0.5s linear both;
}
.atari img{
	animation: scale-up-center 0.4s 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.lot-result .button{
	animation: fade-in 0.2s 1.2s linear both;
}
.lot-result{
	position: relative;
	width: 100%;
	text-align: center;
	z-index: 3;
}
.lot-result p{
	font-size: 1.81rem;
	font-weight: 700;
	color: var(--main-color);
	animation: fade-in 0.2s 1.2s linear both;
}
.zannen{
	overflow: hidden;
}
.zannen img{
	animation: fade-in 0.5s 0.5s linear both;
}
.lot h3{
	color: var(--sys-color);
	font-size: 2.4rem;
	line-height: 1;
	animation: fade-in 0.2s 1.2s linear both;
}
.lot h3::first-letter{
	font-size: 3.2rem;
}
.lot .lot-msg{
	margin: 1rem auto;
	font-weight: 700;
	animation: fade-in 0.2s 1.2s linear both;
}
.lot .bt_back{
	animation: fade-in 0.2s 1.2s linear both;
}


/*====================================================================
　トピックス設定
====================================================================*/
.topics_list ul{
	margin: 0 auto 3rem;
}
.topics_list li{
	position: relative;
}
.topics_list li + li{
	border-top: var(--border1);
	padding-top: 1.5rem;
}
.topics_list li a{
	position: relative;
	display: block;
	text-align: left;
	padding: 0rem 3rem 1.5rem 0;
	text-decoration: none;
	color: var(--dark-gray);
}
.topics_list li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0;
	top: calc(50% - 1rem);
	color: var(--main-color);
	font-size: 2.3rem;
}
.topics_list h3,
.topics_datail h3{
	background: var(--pale);
	padding: 0.5rem;
	margin-bottom: 2rem;
}
.topics_list span{
	color: #aaa;
}
.topics_list p{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.topics_datail div.date{
	color: #aaa;
	text-align: left;
}
.topics_datail div.note{
	text-align: left;
	margin-bottom: 2rem;
	word-wrap: break-word;
	word-break: break-all;
	line-height: 1.8;
}


/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto;
}
.form dt {
	display: flex;
	align-items: baseline;
	padding: 0.5em 0;
	font-weight: 700;
}
.form dt small{
	margin-left: 0.5rem;
	font-size: 1.0rem;
	word-break: break-all;
}
.form * + dt{
	margin-top: 2rem;
}
.form dd {
	margin-top: 0.5rem;
}
.form dd.flex,
.form dd.flex50{
	display: flex;
	flex-wrap: wrap;
}
.form dd.flex label {
	margin-right: 2rem;
}
.form dd.flex50 label {
	width: 50%;
}
.form dd label {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.required {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
	border-radius: 0.5rem;
	padding: 0.3rem 0;
	margin-left: 1rem;
	min-width: 3.6rem;
	max-height: 2.1rem;
	color: var(--white);
	font-size: 1.1rem;
	line-height: 1;
	word-break: keep-all;
}
.prize-name {
	margin: 2rem auto;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	color: var(--main-color);
}
.form .caution{
	background: var(--pale);
	border-radius: 1.3rem;
	margin: 2rem auto ;
	padding: 1rem;
	width: 29.5rem;
	text-align: left;
	font-size: 1.3rem;
}
.form .caution li{
	font-size: 1.2rem;
}
.form_comp{
	text-align: center;
}
.form_comp p{
	margin: 2rem auto;
}
.form_comp p strong{
	font-size: 1.6rem;
}

input[type="radio"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 50%;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="radio"]:checked {
	border-color: var(--main-color);
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: var(--main-color);
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
label input[type="radio"]{
	display: none;
}
label:has(input[type="radio"]){
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 9.1rem;
	height: 3.4rem;
	margin-right: 0.7rem!important;
}
label:has(input[type="radio"]:checked){
	background: var(--main-color);
	border: var(--main-color) solid 0.1rem;
	color: #fff;
}
input[type="checkbox"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="checkbox"]:checked {
	background: color-mix(in srgb, var(--main-color) 60%, transparent);
	border-color: color-mix(in srgb, var(--main-color) 60%, transparent);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: #FFFFFF;
	content: "";
	left: 10%;
	top: 10%;
	width: 80%;
	height: 80%;
	clip-path: polygon(6% 70%, 15% 54%, 43% 70%, 81% 8%, 97% 19%, 50% 95%);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
textarea {
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 1.6rem;
	width: 100%;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input:focus,
select:focus,
textarea:focus{
	box-sizing: border-box;
	outline: var(--blue) solid 0.2rem;
}
input[type="date"]:focus{
	outline: none
}
input[type="date"]{
  -webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	font-size: 1.6rem;
	font-family: var(--main-font);
}
input[type="date"]::-webkit-calendar-picker-indicator{
  position: absolute;
  width: 100%;
  height: 3rem;
  right: -3.5rem;
	opacity: 0;
}
label:has(input[type="date"]){
	position: relative;
	display: inline-flex;
	width: fit-content;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.1rem 0.5rem;
}
label:has(input[type="date"]:focus){
	outline: var(--blue) solid 0.2rem;
}
label:has(input[type="date"])::before{
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
  background-color: var(--main-color);
  border-radius: 0.5rem;
  width: 3rem;
  height: 3rem;
	right: -3.5rem;
	font-family: var(--ms);
  content: "\e935";
	font-size: 2.0rem;
	font-weight: 300;
	color: #fff;
}
select {
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	color: var(--black);
	padding: 0.5rem;
	width: 100%;
	max-width: 100%;
	font-size: 1.6rem;
}
.birth_date select{
	box-sizing: border-box;
	width: 9.1rem;
	height: 3.4rem;
	margin-right: 0.7rem!important;
	text-align: center;
}
textarea {
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 100%;
}
textarea[disabled] {
	border-color: #ddd;
}
::placeholder {
	color: #999;
	font-size: 0.9em;
}
input#textPassword{
	border: none;
}
.textPassword{
	position: relative;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	overflow: hidden;
}
.textPassword:has(input:focus){
	outline: var(--blue) solid 0.2rem;
}
#buttonEye {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 10%;
	right: 0;
	top: 0;
}
#buttonEye.visibility::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f4";
}
#buttonEye.visibility_off::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f5";
}
.other_checked{
	display: none;
}
.form dd:has(#other:checked) .other_checked{
	display: block;
}


.questionnaire select{
	width: 100%;
}
.questionnaire input[type="radio"] {
	appearance: none;
	display: block;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 50%;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
.questionnaire input[type="radio"]:checked {
	border-color: var(--main-color);
}
.questionnaire input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: var(--main-color);
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
.questionnaire label:has(input[type="radio"]){
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: none;
	border-radius: 0;
	width: auto;
	height: auto;
	margin-right: 0.7rem!important;
}
.questionnaire label:has(input[type="radio"]:checked){
	background: none;
	border: none;
	color: var(--black);
}
.question{
  counter-reset: number;
}
.question dt::before{
	position: relative;
  counter-increment: number;
  content: "問" counter(number) "：";
	word-break: keep-all;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention strong{
	font-size: 1.8rem;
}

.join_attention a{
	font-weight: 700;
}

.join_attention div{
	background: var(--pale);
	margin: 2rem 0 1rem;
	padding: 0.5rem;
}
.join_attention li{
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 700;
	font-size: 1.4rem;
}
.join_attention li + li{
	margin-top: 0.5rem;
}
.join_attention div + ul li{
	font-size: 1.2rem;
	font-weight: normal;
}



/*====================================================================
よくある質問
====================================================================*/
.qanda dl{
	margin: 1rem auto 0;
}
.qanda dt:has(span){
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: left;
}
.qanda dt span{
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--blue);
}
.qanda dd{
	margin-bottom: 3rem;
}
.qanda dd:has(span){
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
.qanda dd span{
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--red);
}
.qanda li{
	padding-left: 1em;
	text-indent: -1em;
}
.qanda h3{
	background: var(--main-color);
	border-radius: 0.8rem;
	padding: 0.5rem 1rem 0.4rem;
	text-align: center;
	color: #fff;
}
.qanda h4{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	text-align: center;
}
.qanda h4::before,
.qanda h4::after{
	position: relative;
	background: var(--black);
	content: "";
	width: 3rem;
	height: 0.1rem;
}
.qanda #qr{
	background: var(--pale);
	border-radius: 0.8rem;
	padding: 2rem 0.8rem 0.1rem;
}
.qanda dd img{
	margin-top: 0.5rem;
}
.qanda ol{
	list-style-type: none;
	counter-reset: my-counter;
}
.qanda ol > li{
	position: relative;
	padding-left: 1.8rem;
	margin-top: 1rem;
}
.qanda ol > li::before{
	content: counter(my-counter);
  counter-increment: my-counter;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	border-radius: 50%;
	width: 1.4rem;
	height: 1.4rem;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	top: 0.3rem;
	left: 0;
}
.qanda div{
	background: var(--pale);
	padding: 0.5rem;
}

/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention strong{
	font-size: 1.6rem;
}
.join_attention a{
	font-weight: 700;
}
.join_attention div{
	background: var(--pale);
	margin: 2rem 0 1rem;
	padding: 1.0rem 0.5rem;
}
.join_attention li{
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 700;
	font-size: 1.4rem;
}
.join_attention li + li{
	margin-top: 0.5rem;
}
.join_attention div + ul li{
	font-size: 1.2rem;
	font-weight: normal;
}


/*====================================================================
　FAQ
====================================================================*/
.faq .title{
	background: var(--red);
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.faq img {
	width: 100%;
	margin: 1rem 0;
}
.faq dt {
	margin: 0;
	padding: 1rem 0;
	padding-left: 1.25em;
	text-indent: -1.25em;
	color: #185195;
}
.faq dt strong {
	font-size: 1.8rem;
}
.faq dd  {
	border-bottom: 0.1rem dotted #999;
	margin: 0 0 1rem;
	padding-bottom: 1em;
	padding-left: 1.25em;
	text-indent: -1.25em;
}
.faq dd strong {
	font-size: 1.8rem;
	color: var(--red);
}
.faq ul {
	padding: 0.5rem 0 0.5rem 1em;
	text-indent: -1em;
}
.faq .title2{
	background: #006298;
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
}
.faq .midashi{
	background: var(--red);
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
	font-weight: 700;
}

/*====================================================================
　自動翻訳の設定方法
====================================================================*/
.translate h2{
	margin-top: 0!important;
}
.translate h3.title {
  background-color: #006298;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.translate img {
  display: block;
  margin: 0.5rem auto;
}
.translate ol.numb {
  list-style: none;
  counter-reset: number;
}
.translate ol.numb li {
  position: relative;
  padding-left: 2rem;
}
.translate ol.numb li:not(:last-of-type) {
  border-bottom: var(--dark-gray) dotted 0.2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.translate ol.numb li::before {
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
  background: #006298;
  counter-increment: number;
  content: counter(number);
  top: 0.2em;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}
.translate ol.numb li div.box {
  margin: 0.5rem 0.5rem 0.5rem -1.5rem;
}
.translate ol.numb li img.inline {
  display: inline;
  width: 2em;
  margin: 0 0 -0.5rem;
}
.translate .siege{
	border: var(--black) solid 0.1rem;
	padding: 0.5rem;
}
.translate form{
	margin: 0 auto 2rem;
	text-align: center;
}
.eng{
	display: none;
}


/*====================================================================
　PCでアクセス時のエラー表示
====================================================================*/
@media screen and (min-width: 481px){
	html{
		font-size: 10px;
	}
	body{
		max-width: 750px;
		margin: auto;
	}
	main {
		max-width: 37.5rem;
		margin: auto;
	}
}
.view_pc .error{
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
}
.view_pc img{
	width: 150px;
	margin: 3rem auto;
}

/* LINEログイン */
.bt-line{
	background: #06c755;
	border-radius: 1.0rem;
	width: auto;
	max-width: none;
	padding: 0 0 0 5.4rem;
	font-family: var(--main-font);
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1;
	box-shadow: none;
}
.bt-line::before{
	background: url(../img/icon_line.svg) no-repeat center center/100% auto;
	content: "";
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 0.7rem;
	transform: translateY(-50%);
}
.bt-line span {
	width:100%;
	display: block;
  border-left: 1px rgba(0,0,0,0.08) solid;
	padding: 2.0rem 4rem;
}


.popup {
	display: none;
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	padding: 2rem;
	top: 0;
	left: 0;
	z-index: 1500;
}
.popup .inner {
	background: #fff;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
}
.popup .title {
	font-size: 1.8rem;
	font-weight: 700;
}
.popup .flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 2rem auto 0;
}
.popup .button {
	max-width: 40%;
	margin: 0;
}
.popup_close{
	background: var(--white);
	border: var(--sys-color) solid 0.1rem;
	color: var(--sys-color);
}