@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #ED7987;
	--blue: #5CB3DD;
	--blue2: #006DA1;
	--green: #24a740;
	--green2: #85BF4F;
	--gold: #A07C1D;
	--pale: #f1ede0;
	--main-color: #C2DA75
	;
	--sub-color: #184621;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: "Zen Maru Gothic", serif;
	/*--Material Symbols設定 案件ごとに設定--*/
	--ms: 'Material Symbols Rounded';
	/*--個別にMaterial Symbolsを設定する場合--*/
	--mso: 'Material Symbols Outlined';
	--msr: 'Material Symbols Rounded';
	--mss: 'Material Symbols Sharp';
}
.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);
	scroll-behavior: smooth;
}
body {
	position: relative;
	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);
	background-attachment: fixed;
}
body::before{
	position: fixed;
	background: url(../img/bg_mypage.jpg) repeat-y center top/100% auto;
	content: "";
	width: 100vw;
	height: 100dvh;
	left: calc(50% - 50vw);
	z-index: -1;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
	overflow-x: hidden;
}
img {
	display: block;
	width: 100%;
}
a {
	color: var(--red);
}
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;
}

.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;}
.center{text-align: center!important;}
.left{text-align: left!important;}
.right{text-align: right!important;}

/*--------------見出し-----------*/
h2{
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--blue2);
}
* + h2{
	margin-top: 3rem;
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding-bottom: 9.0rem;
}

.block {
	padding: 2rem 0rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	background: #fff;
	border: var(--main-color) solid 0.8rem;
	border-radius: 1.5rem;
	padding: 2rem 1.5rem 3rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	border: none;
	margin: 0;
	padding: 1rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.accordion_title::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5c5";
	font-size: 1.5em;
	right: 1rem;
}
.accordion_title.active::after{
	transform: rotateZ(180deg);
}
.accordion_content{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.accordion:has(.active) .accordion_content{
	display: block;
}
.accordion_content.opne{
	display: block;
}

/*--------------------ボタン--------------------*/
button {
	appearance: none;
	background: none;
	border: none;
}
.button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: var(--middle-gray) solid 0.4rem;
	border-radius: 10vw;
	width: 100%;
	max-width: 25.5rem;
	margin: auto;
	min-height: 4.8rem;
	font-family: var(--main-font);
	color: var(--middle-gray);
	font-size: 2.1rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
}
.button span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0.5rem 0;
}
.button:disabled,.disabled{
	background-color: var(--light-gray);
	border-color: var(--middle-gray);
	color: var(--middle-gray);
}
.bt_next::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5df";
	font-size: 1.5em;
	right: 0.2rem;
}
.bt_back{
	border-color: var(--main-color);
	color: color-mix(in srgb, var(--main-color) 40%, var(--middle-gray) 60%);
	box-shadow: 0 0.7rem 0 color-mix(in srgb, var(--main-color) 40%, var(--middle-gray) 60%);
}
.bt_sumi{
}
.bt_outside::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e89e";
	font-weight: 300;
	font-size: 2.5rem;
	right: 1.5rem;
}
.bt_copy::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e14d";
	font-weight: 200;
	font-size: 2.5rem;
	right: 1rem;
}
.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-line{
	display: inline-flex;
	background: #06c755;
	border-radius: 0.5rem;
	width: auto;
	max-width: none;
	padding: 0 0 0 5rem;
	font-family: var(--main-font);
	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: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
}
.bt-line div {
	width:100%;
	display: block;
  border-left: 1px rgba(0,0,0,0.08) solid;
	padding: 1.5rem 3rem;
}

/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_cookie,
.bt_submit,
.bg_red{
	border-color: var(--red);
	color: var(--red);
	box-shadow: 0 0.7rem 0 #DF4C67;
}
.bg_blue{
	border-color: var(--blue);
	color: var(--blue);
	box-shadow: 0 0.7rem 0 #4D94E0;
}
.bg_green{
	border-color: var(--green);
	color: var(--green);
	box-shadow: 0 0.7rem 0 #379b4c;
}
.bg_gold{
	border-color: var(--gold);
	color: var(--gold);
	box-shadow: 0 0.7rem 0 color-mix(in srgb, var(--gold) 40%, var(--middle-gray) 60%);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	background: url(../img/bg_footer.png) no-repeat center bottom/100% auto;
	width: 100%;
	height: 9.0rem;
	left: 0;
	bottom: 0;
	z-index: 200;
}
footer:has(#bt_menu:checked){
	filter: none;
}
footer.hide{
	display: none;
}
footer ul {
	position: absolute;
	display: flex;
	justify-content: flex-start;
	gap: 0.2rem;
	width: 100%;
	height: 9.0rem;
	padding: 0 2.3rem 0 1.1rem;
}
footer li {
	text-align: center;
	flex-basis: 7.2rem;
}
footer li:nth-of-type(1){
	flex-basis: 9.3rem;
	margin: 0 auto 0 0;
}
footer li a{
	display: block;
	width: 100%;
	height: 9.0rem;
	padding-top: 6.0rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--blue2);
	text-decoration: none;
}
footer li:nth-of-type(1) a{
	padding-top: 4.5rem;
	font-size: 1.9rem;
	color: #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(--blue2);
	border-radius: 0.3rem;
	height: 0.3rem;
	width: 2.5rem;
	content: '';
	transition: all 500ms;
	transition-timing-function: ease-in-out;
}
.menu-btn span.menubtn{
	top: 45%;
}
.menu-btn span.menubtn:before {
	bottom: 0.8rem;
}
.menu-btn span.menubtn:after {
	top: 0.8rem;
}
.menu span.menutext{
	position: absolute;
	display: block;
	top: 6.0rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--blue2);
}

#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 {
	top: 0;
	transform: rotate(225deg);
}
#bt_menu:checked ~ .menu-btn span.menutext {
	transform: none;
}
#bt_menu {
	display: none;
}
.menu-content {
	position: fixed;
	background: #fff;
	border: var(--blue2) solid 0.5rem;
	border-radius: 100% 100% 0 100%;
	width: 9.7rem;
	height: 9.7rem;
	padding-bottom: 9rem;
	top: auto;
	left: auto;
	right: 0;
	bottom: -1.8rem;
	transition: all 0.3s;
	transform-origin: calc(100% - 2.5rem) calc(100% - 2.5rem);
	transform-origin: right bottom -1.8rem;
	transition-timing-function: linear(0, 0.30, 0.50, 0.65, 1);
	opacity: 0;
}
.menu-content ul {
	display: block;
	padding: 0 2rem;
	height: calc(100% - 9rem);
	overflow-y: auto;
}
.menu-content ul li {
	border-bottom: var(--blue2) solid 0.1rem;
	width: 100%;
	height: auto;
	box-shadow: none;
	filter: none;
}
.menu-content ul li:last-of-type{
	border: none;
}
.menu-content ul li a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 1.5rem 3rem 1.5rem 0.5rem;
	font-size: 1.5rem;
	color: var(--blue2);
	text-decoration: none;
}
.menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 1rem;
}
#bt_menu:checked ~ .menu-content {
	border-radius: 0;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	opacity: 1;
}
/*====================================================================
　規約・概要
====================================================================*/
.rule dt{
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gold);
}
.rule dt span{
	color: var(--red);
}
.rule * + dt{
	border-top: var(--border1);
	padding-top: 1.5rem;
}
.rule dd{
	margin-bottom: 1.5rem;
	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;
}

/*====================================================================
　ログイン
====================================================================*/
.login{
	position: relative;
	min-height: calc(100dvh - 25rem);/*ヘッダ分をマイナスする*/
	padding: 2rem 0 3rem;
	text-align: center;
}
.login::before{
	position: absolute;
	background: #fff;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	padding-bottom: 10rem;
	text-align: center;
}

.mypage .title {
	font-weight: 700;
	font-size: 1.8rem;
}
.mypage .explain{
	margin: 2rem auto;
}

/*--------------------ユーザー情報--------------------*/
.info{
	position: relative;
	background: url(../img/bg_info_top.png) no-repeat center top/100% auto, url(../img/bg_info_bottom.png) no-repeat center bottom/100% auto;
	background-color: #fff;
	padding: 2.0rem ;
	z-index: 2;
}
.info .name {
	position: relative;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--red);
}
.info .name small{
	font-size: 1.4rem;
}
.info .myno {
	position: relative;
	background: var(--red);
	border-radius: 10vw;
	width: fit-content;
	width: 17.3rem;
	height: 3.2rem;
	left: calc(50% - 17.3rem / 2);
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
}
.info .myno small{
	font-size: 1.5rem;
}
.info p {
	position: relative;
	font-size: 1.1rem;
	text-align: center;
	font-weight: 500;
}

/*--------------------トピックス--------------------*/
.topics_top{
	position: relative;
	background: url(../img/bg_info_top.png) no-repeat center top/100% auto, url(../img/bg_info_bottom.png) no-repeat center bottom/100% auto;
	background-color: #fff;
	padding: 2rem 2rem;
	margin-top: -0.5rem;
}
.topics_top .topics_title{
	position: relative;
	border-bottom: var(--border1);
	padding-bottom: 0.4rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--red);
}
.topics_top ul{
	margin: 1rem auto 0;
}
.topics_top ul li{
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--blue2);
}
.topics_top li a{
	color: var(--blue2);
	font-weight: 700;
}
.topics_top li span{
	margin-right: 1em;
	color: var(--middle-gray);
	font-size: 1.2rem;
}
.topics_link{
	position: absolute;
	display: block;
	background: var(--red);
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 2.0rem;
	right: 2.0rem;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.5rem;
}
/*--------------------スタンプ一覧--------------------*/
.stamp-list {
	position: relative;
	background: url(../img/bg_stamplist.jpg) no-repeat center top/100% auto;
	height: 76.5rem;
	padding: 2rem 0 3.2rem;
	margin: 0 auto;
}
.stamp-list::before{
	position: absolute;
	background: url(../img/getstamp_before.png) no-repeat center center/100% auto;
	content: "";
	width: 26.3rem;
	height: 26.3rem;
	left: calc(50% - 26.3rem / 2);
	top: 2.8rem;
	animation: rotate-center 60s linear infinite both;
}
.stamp-list::after{
	position: absolute;
	background: url(../img/bg_stamplist_after.png) no-repeat center top/100% auto;
	content: "";
	width: 100%;
	height: 45.6rem;
	left: 0;
	top: 0;
}
.stamp-list .title{
	position: relative;
	width: 100%;
	z-index: 2;
}
.stamp-list ul{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2.2rem 8.3rem;
	width: 100%;
	padding-top: 1rem;
	left: 0;
	z-index: 2;
}
.stamp-list li {
	width: 13.0rem;
}
.stamp-list li:nth-of-type(1){
	margin: 0 5rem -3.3rem;
}
.stamp-list li:nth-of-type(6){
	margin: -3.6rem 5rem 0;
}

.fukidashi{
	position: absolute;
	background: url(../img/bg_comment.png) no-repeat left top/100% auto;
	width: 12.4rem;
	height: 11.1rem;
	left: 0rem;
	bottom: 14.5rem;
	padding: 2.5rem 0 0 1.3rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	color: #fff;
}
.btn_loc{
	position: relative;
	display: block;
	margin-top: 1.5rem;
	text-decoration: none;
}
.btn_loc span{
	position: relative;
}
.btn_loc::before{
	position: absolute;
	background: url(../img/cloud1.png) no-repeat center center/100% auto;
	content: "";
	width: 10.5rem;
	height: 2.4rem;
	left: -1.2rem;
	top: 1.9rem;
	z-index: 2;
	transition: all 0.5s;
	transform: translateX(-20rem);
}
.btn_loc::after{
	position: absolute;
	background: url(../img/cloud2.png) no-repeat center center/100% auto;
	content: "";
	width: 12.3rem;
	height: 3.2rem;
	right: -0.5rem;
	top: 8.5rem;
	transition: all 0.5s;
	transform: translateX(20rem);
}
.btn_loc.scrollin::before,
.btn_loc.scrollin::after{
	transform: translate(0);
}
.btn_loc span::after{
	position: absolute;
	background: url(../img/icon_loc.png) no-repeat center center/100% auto;
	content: "";
	width: 6.5rem;
	height: 9.5rem;
	right: 3.7rem;
	top: -6.5rem;
}

/*--------------------賞品一覧--------------------*/
.prize-list{
	position: relative;
	background: #fff;
	border: var(--main-color) solid 0.8rem;
	border-radius: 1.5rem;
	width: 34.6rem;
	margin: 2.0rem auto;
	padding-bottom: 3.1rem;
}
.prize-list .title{
	position: relative;
	background: var(--main-color);
}
.prize-list .title::before{
	position: absolute;
	background: url(../img/icon_prize.png) no-repeat center center/100% auto;
	content: "";
	width: 9.3rem;
	height: 9.3rem;
	left: -1.7rem;
	top: -2.0rem;
	transition: all 1.0s;
}
.prize-list .title.scrollin::before{
	transform: rotate(360deg);
}
.prize-list .prize_name{
	position: relative;
	margin: 0 auto;
	font-size: 1.8rem;
	font-weight: 700;
	z-index: 2;
}
.prize-list .prize_img{
	position: relative;
}
.prize-list .term_first{
	position: relative;
	background: #FFE9EB;
	border-radius: 1rem;
	width: 30.6rem;
	margin: 0 auto 0;
	padding-bottom: 2.0rem;
	transition: all 0.5s;
	transform: translateY(20rem);
	opacity: 0;
}
.prize-list .term_first::before{
	position: absolute;
	background: url(../img/term_first_before.png) no-repeat center center/100% auto;
	content: "";
	width: 100%;
	height: 3.9rem;
	left: 0;
	top: -1.8rem;
}
.prize-list .term_second{
	position: relative;
	background: #D6EAF0;
	border-radius: 1rem;
	width: 30.6rem;
	margin: 3rem auto;
	padding-bottom: 2.0rem;
	transition: all 0.5s;
	transform: translateY(20rem);
	opacity: 0;
}
.prize-list .term_second::before{
	position: absolute;
	background: url(../img/term_second_before.png) no-repeat center center/100% auto;
	content: "";
	width: 100%;
	height: 4.2rem;
	left: 0;
	top: -2.1rem;
}
.prize-list .term_first.scrollin,
.prize-list .term_second.scrollin{
	transform: translateY(0);
	opacity: 1;
}
.prize-list p,
.prize-list .caution{
	width: 90%;
	margin: auto;
	font-weight: 700;
	color: var(--blue);
}
.bt_apply{
	background: url(../img/bg_bt_apply_off.png) no-repeat center center/100% auto;
	padding-left: 4rem;
}
a.bt_apply.bg_red{
	background-image: url(../img/bg_bt_apply_red.png);
	background-color: #fff;
}
a.bt_apply.bg_blue{
	background-image: url(../img/bg_bt_apply_blue.png);
	background-color: #fff;
}


/*--------------------リンク集集--------------------*/
.links a{
	position: relative;
	display: block;
	width: 29rem;
	margin: auto;
}

/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	background-image: url(../img/bg_getstamp.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	padding: 4.0rem 0 2.8rem;
	text-align: center;
	overflow: hidden;
	min-height: 100dvh;
}
.getstamp::before{
	position: absolute;
	background: url(../img/getstamp_before.png) no-repeat center center/100% auto;
	content: "";
	width: 40.4rem;
	height: 40.4rem;
	left: calc(50% - 40.4rem / 2);
	top: 3.7rem;
	animation: fade-in 0.5s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both ,rotate-center 60s 0.5s linear infinite both;
}
.getstamp::after{
	position: absolute;
	background: url(../img/getstamp_after.png) no-repeat center top/100% auto;
	content: "";
	width: 100%;
	height: 51.5rem;
	left: 0;
	top: 0;
	animation: fade-in 0.5s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.stampget{
	position: relative;
	z-index: 2;
	animation: fade-in 0.5s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .stamp-img {
	position: relative;
	width: 22.0rem;
	margin: 1.2rem auto 0;
	z-index: 2;
	animation: fade-in 0.5s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.getstamp .message{
	position: relative;
	background: #fff;
	border: var(--green2) solid 0.4rem;
	border-radius: 1rem;
	width: 34.1rem;
	margin: 11.4rem auto 0;
	padding: 3rem ;
	box-shadow: inset 0 0 0 0.5rem #fff, inset 0 0 0 0.6rem var(--green2);
	z-index: 2;
	animation: fade-in 0.5s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .spot-title {
	font-size: 2.3rem;
	font-weight: 700;
	color: var(--green2);
	line-height: 1.1;
}
.getstamp .message p{
	margin-top: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
}
.getstamp .congrats {
	position: absolute;
	background: color-mix(in srgb, #FFE584 86%, transparent);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 6.8rem 0 0;
	font-size: 1.7rem;
	font-weight: 700;
	z-index: 100;
	animation: fade-in 0.5s 3.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats::before{
	position: absolute;
	background: url(../img/congrats_before.png) no-repeat center center/100% auto;
	content: "";
	width: 100%;
	height: 50.6rem;
	left: 0;
	top: 0;
	z-index: 10;
	pointer-events: none;
	animation: scale-up-center 0.4s 3.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .congrats .inner{
	position: relative;
	background: url(../img/bg_congrats_inner.png) no-repeat center center/100% auto;
	height: 47.3rem;
}
.getstamp .congrats .inner::before{
	position: absolute;
	background: url(../img/box_bottom.png) no-repeat center center/100% auto;
	content: "";
	width: 15.7rem;
	height: 12.6rem;
	left: calc(50% - 15.7rem / 2);
	top: 31.4rem;
}
.getstamp .congrats .inner::after{
	position: absolute;
	background: url(../img/box_top.png) no-repeat center top/100% auto;
	content: "";
	width: 16.1rem;
	height: 8.8rem;
	left: calc(50% - 16.1rem / 2);
	top: 25.0rem;
	animation: box_top 0.3s 3.3s ease-out both;
}
.getstamp .congrats_img{
	position: relative;
	animation: scale-up-center 0.4s 3.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .congrats .inner p{
	animation: fade-in 0.5s 3.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats .inner .button {
	margin: 1.5rem auto 0;
	animation: fade-in 0.5s 3.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.getstamp .close {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #006DA1;
	border: #fff solid 0.4rem;
	border-radius: 50%;
	width: 5.7rem;
	height: 5.7rem;
	margin: 3.5rem auto 0;
	color: #fff;
	font-size: 3.8rem;
	font-variation-settings: 'GRAD' 0, 'wght' 700;
	text-decoration: none;
	animation: fade-in 0.5s 3.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats .close{
	margin: -2.0rem auto 0;
	animation-delay: 3.6s;
}

.shutter{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 500;
}
.shutter li{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
@keyframes shutter{
	from{transform: rotate(60deg);transform: translate(100vw,100vh); opacity: 1;}
	70%{transform: rotate(0);transform: translateX(0,0); opacity: 1;}
	to{transform: rotate(0);transform: translateX(0,0); opacity: 1;}
}
.shutter li div{
	position: absolute;
	background: var(--black);
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0 100vw 0 0;
	width: 100%;
	height: 200%;
	left: 50%;
	top: 50%;
	transform: rotate(60deg);transform: translate(100vw,100vh); opacity: 1;
	animation: shutter 0.8s ease-in 2 alternate;
}
.shutter li:nth-of-type(2){
	transform: rotate(60deg);
}
.shutter li:nth-of-type(3){
	transform: rotate(120deg);
}
.shutter li:nth-of-type(4){
	transform: rotate(180deg);
}
.shutter li:nth-of-type(5){
	transform: rotate(240deg);
}
.shutter li:nth-of-type(6){
	transform: rotate(300deg);
}
/*====================================================================
　全体マップ画面
====================================================================*/
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;
}

/*====================================================================
　対象地点一覧
====================================================================*/
.spot-list li {
	position: relative;
	display: flex;
	align-items: center;
}
.spot-list li + li {
	border-top: var(--border1);
}
.spot-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.5rem 3rem;
	width: 100%;
	color: var(--gold);
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
}
.spot-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0.5rem;
	color: var(--red);
}
.checked::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e834";
	font-variation-settings: 'FILL' 1;
	left: 0.5rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--red);
}
.nocheck::before{
	position: absolute;
	font-family: var(--ms);
	content: "\eb36";
	font-variation-settings: 'FILL' 1;
	left: 0.5rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--light-gray);
}


/*====================================================================
　地点詳細画面
====================================================================*/
.message-unacquired {
	margin: 2.5rem auto;
	color: var(--red);
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.message-sumi {
	margin: 2.5rem auto;
	color: #999;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.message-gps {
	border: 0.2rem solid #eee;
	padding: 0.5rem;
	margin: 2rem auto;
	font-size: 1.4rem;
}

.spot-img {
	position: relative;
	margin: 2rem auto;
}

.spot-detail {
	border: 0.1rem solid #ccc;
	border-collapse: collapse;
	margin: 2rem 0;
	width: 100%;
	text-align: left;
}
.spot-detail tr:nth-of-type(even){
	background: rgb(247, 247, 247);
}

.spot-detail th,
.spot-detail td {
	padding: 1rem 0.5rem;
	word-break: break-all;
}
.spot-detail th {
	width: 5em;
	vertical-align: top;
	text-align: center;
}
.spot-detail td{
	line-height: 1.2;
}
.spot-detail td span{
	position: absolute;
	display: inline-block;
	margin-top: 0.2rem;
	margin-left: 0.2rem;
	font-size: 1.1em;
}
.spot .button{
	margin-top: 2rem;
}


/*====================================================================
　トピックス設定
====================================================================*/
.topics_list ul{
	margin: 0 auto;
}
.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(--black);
}
.topics_list li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0;
	top: calc(50% - 1rem);
	color: var(--blue);
	font-size: 2.3rem;
}
.topics_list h3,
.topics_datail h3{
	margin-bottom: 0.5rem;
	color: var(--red);
}
.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;
}


/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto;
}
.form dt {
	display: flex;
	align-items: baseline;
	background: var(--pale);
	padding: 0.5em;
	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: #fff;
	border: var(--red) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.2rem 0;
	margin-left: 1rem;
	min-width: 3.6rem;
	max-height: 2.1rem;
	color: var(--red);
	font-size: 1.2rem;
	line-height: 1;
	word-break: keep-all;
}
.prize-name {
	margin: 2rem auto;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	color: var(--red);
}
.form .caution{
	margin-top: 2rem;
}
.form .caution li{
	font-size: 1.2rem;
}
.form_comp{
	text-align: center;
}
.form_comp p{
	margin: 2rem auto;
}

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 {
	background: #666;
	border-color: #4c4c4c;
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
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: #666;
	border-color: #4c4c4c;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: #FFFFFF;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	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;
	max-width: 100%;
	font-size: 1.4em;
}
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;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.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;
}

/*------初回アクセス時-----*/
.attention {
	position: fixed;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100vh;
	padding: 2rem;
	top: 0;
	left: 0;
	text-align: center;
	overflow-y: auto;
}
.attention div{
	background: #fff;
	border-radius: 1rem;
	height: 70%;
	padding: 2rem;
	margin-bottom: 2rem;
	overflow-y: scroll;
}
.attention dl{
	margin: 0 0 2rem;
}
.attention dt{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 1rem;
}
.attention dt span.material-symbols{
	margin: 0 1rem;
	color: #c92a19;
	font-variation-settings: 'FILL' 1;
}
.attention dd {
	padding: 0.5rem 0;
	text-align: left;
}
.attention ul li{
	padding: 0.5rem 1em;
	text-indent: -1em;
}
.attention ul li img{
	width: 15rem;
	margin: 0 auto;
}



/*====================================================================
　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: var(--border1);
	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 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(--border1);
  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;
	}
	.block {
		max-width: 37.5rem;
		margin: auto;
	}
	header{
		max-width: 500px;
		margin: auto;
	}
}
.view_pc .error{
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
}
.view_pc img{
	width: 150px;
	margin: 3rem auto;
}