@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #CD3A2F;
	--orange: #F38900;
	--blue: #003476;
	--blue2: #2EA7E0;
	--blue3: #036EB8;
	--sky: #2EA7E0;
	--green: #24a740;
	--green2: #8FC31F;
	--green3: #006934;
	--purple: #603F8E;
	--brown: #B28146;
	--pale: #f1ede0;
	--main-color: #FFDC79;
	--sub-color: #184621;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: 'Roboto', 'Noto Sans JP', sans-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);
}
body {
	position: relative;
	background: #FFF095;
	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;
}
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.3rem;
	text-align: center;
}


/*--下からせり上がり--*/
.scroll{
	opacity : 0;
	transform : translate(0, 5rem);
	transition : all 500ms;
}
.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.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(--blue);
}
/*--------------------枠--------------------*/
.section {
	padding-bottom: 12rem;
}

.block {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 0 2rem 3rem;
}
.content{
	position: relative;
	background-color: rgba(255,255,255,0.9);
	background-image: url(../img/bg_left_top.png),url(../img/bg_right_bottom.png);
	background-repeat: no-repeat;
	background-position: left top, right bottom;
	background-size: 15.9rem auto, 15.9rem auto;
	width: 100%;
	padding: 2rem calc(3.5rem / 2) 3rem;
	margin-bottom: -4rem;
	top: -4rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--orange);
	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;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.accordion .accordion_title.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: var(--light-gray);
	border: solid 0.2rem;
	border-radius: 100vw;
	width: 100%;
	max-width: 27.2rem;
	margin: auto;
	min-height: 4.2rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.7rem;
	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%;
}
.button:disabled{
	background-color: var(--light-gray);
	box-shadow: none;
}
.bt_next::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5df";
	font-size: 3.0rem;
	font-weight: 400;
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24;
	right: 1rem;
}
.bt_back{
	background-color: #9FA0A0;
	box-shadow: 0 0.6rem 0 #9FA0A0;
}
.bt_back::before,
.bt_retry::before {
	position: absolute;
	font-family: var(--ms);
	content: "\e5de";
	font-size: 3.0rem;
	font-weight: 400;
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24;
	left: 1rem;
}
.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 {
	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_gift::before {
	position: absolute;
	background: url(../img/icon_gift.svg) no-repeat center center/100% auto;
	content: "";
	width: 1.5rem;
	height: 1.7rem;
	left: 2rem;
}
.bt_cookie{
	background-color: var(--red);
}
.bt-line{
	display: inline-flex;
	background: #06c755;
	border-radius: 1.0rem;
	width: auto;
	max-width: none;
	padding: 0 0 0 5.4rem;
	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: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 0.7rem;
	transform: translateY(-50%);
}
.bt-line div {
	width:100%;
	display: block;
  border-left: 1px rgba(0,0,0,0.08) solid;
	padding: 2.0rem 4rem;
}

/*
div:has(.scroll) .button:after{
	opacity: 0;
	transform: translateX(-5rem);
}
div:has(.scroll) .bt_back::before{
	opacity: 0;
	transform: translateX(5rem);
}
.button.scrollin:after,
.bt_back.scrollin::before{
	opacity: 1;
	transform: translateX(0);
	transition: all 500ms;
}*/
/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_submit,
.bg_red{
	background-color: var(--red);
	box-shadow: 0 0.6rem 0 #8E241C;
}
.bg_blue{
	background-color: var(--blue);
	box-shadow: 0 0.6rem 0 var(--blue);
}
.bg_sky{
	background-color: var(--sky);
	box-shadow: 0 0.6rem 0 var(--sky);
}
.bg_green2{
	background-color: var(--green2);
	box-shadow: 0 0.6rem 0 var(--green2);
}
.bg_orange{
	background-color: var(--orange);
	box-shadow: 0 0.6rem 0 var(--orange);
}
.bg_whit_red{
	background-color: #fff;
	border-color: var(--red);
	box-shadow: 0 0.6rem 0 var(--red);
	color: var(--red);
}
.bg_whit_blue{
	background-color: #fff;
	border-color: var(--blue);
	box-shadow: 0 0.6rem 0 var(--blue);
	color: var(--blue);
}
.bg_whit_sky{
	background-color: #fff;
	border-color: var(--sky);
	box-shadow: 0 0.6rem 0 var(--sky);
	color: var(--sky);
}
.bg_whit_green2{
	background-color: #fff;
	border-color: var(--green2);
	box-shadow: 0 0.6rem 0 var(--green2);
	color: var(--green2);
}
.bg_whit_green3{
	background-color: #fff;
	border-color: var(--green3);
	box-shadow: 0 0.6rem 0 var(--green3);
	color: var(--green3);
}
.bg_whit_orange{
	background-color: #fff;
	border-color: var(--orange);
	box-shadow: 0 0.6rem 0 var(--orange);
	color: var(--orange);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	position: relative;
	background: url(../img/bg_header.jpg) no-repeat center top/100% auto;
	width: 100%;
}
header h1{
	position: relative;
	z-index: 10;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	width: 100%;
	height: 9rem;
	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: center;
	align-items: center;
	gap: 0.7rem;
	width: 37.5rem;
	padding-bottom: 0.7rem;
	left: calc(50% - (37.5rem / 2));
}
footer li {
	position: relative;
	border: #fff solid 0.3rem;
	border-radius: 50%;
	width: 7.8rem;
	height: 7.8rem;
	text-align: center;
	box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
}
footer li:nth-of-type(1){
	background-color: var(--blue);
}
footer li:nth-of-type(2){
	background-color: var(--brown);
}
footer li:nth-of-type(3){
	background-color: var(--red);
}
footer li:nth-of-type(4){
	background-color: var(--purple);
}
footer li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
footer li img{
	position: absolute;
	width: 7.8rem;
	left: calc(50% - 3.9rem);
	bottom: -0.3rem;
}

.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.menu-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/footer_menu.png) no-repeat center center/7.8rem auto;
	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: #fff;
	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: 40%;
}
.menu-btn span.menubtn:before {
	bottom: 0.8rem;
}
.menu-btn span.menubtn:after {
	top: 0.8rem;
}
.menu span.menutext{
	position: absolute;
	display: block;
	bottom: 0.5rem;
	font-size: 1.3rem;
	color: #fff;
}

#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: var(--purple);
	width: 100%;
	height: 100%;
	padding-bottom: 9rem;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.3s;
	transform: translateY(100dvh);
	transform-origin: bottom;
	transition-timing-function: linear(0, 0.30, 0.50, 0.65, 1);
}
.menu-content ul {
	display: block;
	padding: 0 2rem;
	height: calc(100% - 9rem);
	overflow-y: auto;
}
.menu-content ul li {
	background: none;
	border: none;
	border-bottom: #fff solid 0.1rem;
	border-radius: 0;
	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%;
	padding: 1.5rem 3rem 1.5rem 0.5rem;
	font-size: 1.6rem;
	color: #fff;
	text-decoration: none;
}
.menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5df";
	font-size: 3.0rem;
	font-weight: 400;
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24;
	right: 0rem;
}
#bt_menu:checked ~ .menu-content {
	opacity: 1;
	transform: translateY(0);
	top: 0;
	left: 0;
}
/*====================================================================
　規約・概要
====================================================================*/
.rule dt{
	font-size: 1.6rem;
	font-weight: 700;
}
.rule dt span{
	color: var(--main-color);
}
.rule * + dt{
	border-top: var(--main-color) dotted 0.1rem;
	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 li + 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 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	text-align: center;
}

.mypage .title {
	font-weight: 700;
	font-size: 1.8rem;
}
.mypage .explain{
	margin: 2rem auto;
}
/*--------------------ユーザー情報--------------------*/
.info{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url(../img/bg_info.png) no-repeat center center/100% auto;
	width: 100%;
	height: 12.2rem;
	margin-bottom: -4rem;
	top: -4rem;
}
.info .name {
	font-size: 1.4rem;
	font-weight: 700;
}
.info .name small{
	font-size: 1.1rem;
}
.info .myno {
	font-size: 1.2rem;
	font-weight: 700;
}
.info .myno small{
	font-size: 1.0rem;
}
.info p {
	border-top: var(--black) solid 0.1rem;
	width: 30.6rem;
	margin: 0.5rem auto 0;
	padding-top: 1rem;
	font-size: 1.0rem;
	font-weight: 700;
	text-align: center;
	font-feature-settings: "palt";
}

/*--------------------トピックス--------------------*/
.topics_top{
	position: relative;
	background-color: rgba(255,255,255,0.9);
	background-image: url(../img/bg_left_top.png),url(../img/bg_right_bottom.png);
	background-repeat: no-repeat;
	background-position: left top, right bottom;
	background-size: 15.9rem auto, 15.9rem auto;
	width: 33.5rem;
	margin: 0 auto;
	padding: 1rem calc(3.5rem / 2);
}
.topics_top .title{
	position: relative;
	border-bottom: var(--blue3) solid 0.1rem;
	padding-bottom: 0.4rem;
	font-size: 1.6rem;
	color: var(--blue3);
}
.topics_top ul{
	margin: 1rem auto 0;
	padding: 0 2rem;
}
.topics_top li{
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.topics_top li a{
	color: var(--blue);
	font-size: 1.3rem;
}
.topics_top li span{
	margin-right: 1em;
	color: #aaa;
	font-size: 1.2rem;
}
.topics_link{
	position: absolute;
	display: block;
	background: var(--blue3);
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 0.9rem;
	right: calc(3.5rem / 2);
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.5rem;
}

.howto{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 33.5rem;
	margin: 0 auto;
	top: 0;
}
.howto dt{
	justify-content: flex-start;
	background: none;
	padding: 0 2.5rem 0 0;
	font-weight: 700;
	color: var(--red);
	text-align: left;
}
.howto dt::after{
	right: 0;
}
.howto dd + dt{
	border-top: var(--border1);
	padding-top: 1rem;
}
.howto dd{
	padding: 0;
	text-align: left;
}



/*--------------------スタンプ一覧--------------------*/
.stamp-list {
	position: relative;
	width: 100%;
	padding: 0.3rem;
	overflow: hidden;
}
.stamp-list .title{
	position: relative;
	font-size: 2.0rem;
	font-weight: 700;
	font-feature-settings: "palt";
}
.stamp-list .title span{
	font-size: 1.5rem;
}
.stamp-list .title small{
	font-size: 0.85em;
}
.stamp-list .title::before,
.stamp-list .title::after{
	position: absolute;
	background: url(../img/title_stamplist_before.svg) no-repeat center center/100% auto;
	content: "";
	width: 3.3rem;
	height: 3.8rem;
	left: calc(50% - 13rem);
	top: 1.3rem;
}
.stamp-list .title::after{
	background-image: url(../img/title_stamplist_after.svg);
	left: calc(50% + 9.7rem);
}
.stamp-list ul {
	position: relative;
	background: #fff;
	width: 33.5rem;
	height: 49.0rem;
	margin: 1rem auto 0;
	box-shadow: 0.2rem 0.2rem 0.3rem rgba(0,0,0,0.3);
	opacity : 1;
	transform : translate(0, 0);
}
.stamp-list li {
	position: absolute;
	transition : all 500ms;
}
.stamp-list ul.scrollin li{
	opacity : 1;
	transform : translate(0, 0);
}
.stamp-list li:nth-of-type(1){
	width: 12.0rem;
	right: 1.3rem;
	top: 1.3rem;
	transform : translate(60vw, -50vw);
}
.stamp-list li:nth-of-type(2){
	width: 19.0rem;
	left: 1.3rem;
	top: 0rem;
	transform : translate(-70vw, -50vw);
	transition-delay: 0.2s;
}
.stamp-list li:nth-of-type(3){
	width: 10.2rem;
	left: 10.7rem;
	top: 10.1rem;
	transform : translate(-70vw, -40vw);
	transition-delay: 0.4s;
}
.stamp-list li:nth-of-type(4){
	width: 9.4rem;
	left: 1.3rem;
	top: 10.1rem;
	transform : translate(-60vw, -30vw);
	transition-delay: 0.6s;
}
.stamp-list li:nth-of-type(5){
	width: 13.7rem;
	right: 1.3rem;
	top: 20.0rem;
	transform : translate(60vw, 0vw);
	transition-delay: 0.8s;
}
.stamp-list li:nth-of-type(6){
	width: 17.3rem;
	left: 1.3rem;
	top: 20.0rem;
	transform : translate(-70vw, 0vw);
	transition-delay: 1.0s;
}
.stamp-list li:nth-of-type(7){
	width: 8.0rem;
	left: 10.4rem;
	bottom: 12.1rem;
	transform : translate(-60vw, 40vw);
	transition-delay: 1.2s;
}
.stamp-list li:nth-of-type(8){
	width: 8.7rem;
	left: 1.3rem;
	bottom: 12.1rem;
	transform : translate(-60vw, 30vw);
	transition-delay: 1.4s;
}
.stamp-list li:nth-of-type(9){
	width: 15.7rem;
	right: 1.3rem;
	bottom: 1.3rem;
	transform : translate(60vw, 50vw);
	transition-delay: 1.6s;
}
.stamp-list li:nth-of-type(10){
	width: 15.4rem;
	left: 1.3rem;
	bottom: 0rem;
	transform : translate(-60vw, 50vw);
	transition-delay: 1.8s;
}
/*--------------------賞品一覧--------------------*/
.prize-list{
	background: #fff;
	border-radius: 1.0rem;
	width: 33.5rem;
	margin: 1rem auto;
	padding: 0rem 2rem 3rem;
}
.prize-list .title{
	position: relative;
	top: -1.4rem;
	margin-bottom: -1.4rem;
}
.prize-list .prize_img{
	position: relative;
	width: 24.4rem;
	margin: 0rem auto;
}
.prize-list .prize_name{
	margin: 1rem auto;
	font-size: 1.6rem;
	font-weight: 700;
}
.prize-list .prize_detail{
	margin: 1rem auto;
	font-weight: 500;
	text-align: left;
}


/*--------------------リンク集集--------------------*/
.links{
}


/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff url(../img/bg_getstamp.jpg) no-repeat center top/100% auto;
	padding: 2rem 0;
	text-align: center;
	overflow-y: scroll;
	min-height: 100dvh;
}
.getstamp::before{
	position: absolute;
	background: url(../img/bg_stamp_img.png) no-repeat center top/100% auto;
	content: "";
	width: 100%;
	height: 35.1rem;
	left: 0;
	top: 0;
	animation: scale-up-center 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	transform-origin: center 70%;
}
.getstamp::after{
	position: absolute;
	background: url(../img/getstamp_after.svg) no-repeat center center/100% auto;
	content: "";
	width: 100%;
	height: 11.0rem;
	left: 0;
	top: 28.9rem;
}
.correct{
	animation: scale-up-center 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.stampget{
	position: relative;
	z-index: 2;
	animation: scale-up-center 0.4s 0.9s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img {
	position: relative;
	width: 26rem;
	height: 26rem;
	margin: -2.1rem auto;
	z-index: 2;
	animation: scale-up-center 0.4s 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.getstamp .spot-title {
	position: relative;
	margin: 2rem auto 1rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--red);
	z-index: 2;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message {
	margin: 0rem auto 0;
	font-size: 1.6rem;
	font-weight: 700;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .commentary{
	margin: 0 auto ;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: url(../img/bg_congrat_bottom.png) no-repeat center bottom/100% auto, url(../img/bg_congrat_top.png) no-repeat center top/100% auto;
	width: 33.5rem;
	padding: 2rem 0;
	margin: 0rem auto;
	font-size: 1.6rem;
	font-weight: 700;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.getstamp .button {
	margin: 1.5rem auto;
}

.getstamp .close {
	display: block;
	margin: 3rem auto 0;
	text-decoration: none;
	color: var(--blue);
	font-size: 4rem;
	font-variation-settings: 'FILL' 1;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}



/*====================================================================
　クイズ出題画面
====================================================================*/
.quiz{
	position: relative;
	background: #fff;
	width: 100%;
	padding: 0 0 3rem;
}
.quiz .title{
	position: relative;

}
.quiz li + li{
	border-top: var(--border1);
}
.quiz li a{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 1rem 3rem 1rem 0.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--black);
	text-decoration: none;
}
.quiz li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0.5rem;
}
.quiz li a.sumi{
	pointer-events: none;
	color: var(--middle-gray);
}
.quiz li a.sumi::after{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--red) solid 0.3rem;
	border-radius: 50%;
	width: 2.0rem;
	height: 2.0rem;
	font-family: var(--main-font);
	content: "済";
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--red);
}
.quiz .spot_name{
	position: relative;
	border-top: var(--blue3) solid 0.3rem;
	border-bottom: var(--blue3) solid 0.3rem;
	width: 33.5rem;
	margin: 2rem auto;
	padding: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--blue3);
	text-align: center;
}
.quiz .question {
	position: relative;
	width: 33.5rem;
	margin: 0 auto 2rem;
	padding: 1.0rem;
	font-weight: 700;
	font-size: 1.6rem;
}
.quiz .question img{
	max-height: 48rem;
	object-fit: contain;
}
.quiz .question p{
	margin-top: 2rem;
	text-align: center;
}
.quiz .answer {
	margin: 3rem auto;
}
.quiz input[type="radio"] {
	display: none;
}
.quiz label {
	display: block;
	background: #ccc;
	border-radius: 0.9rem;
	width: 90%;
	padding: 1.5rem;
	margin: 1.5rem auto;
	text-align: center;
	color: #000;
	font-size: 1.6rem;
	font-weight: 700;
	transition: .1s;
}
.quiz input[type="radio"]:checked + label {
	background: var(--orange);
	color: #fff;
}
.quiz .button#answer{
	pointer-events: none;
}
.quiz:has(input[type="radio"]:checked) .button#answer{
	background-color: #fff;
	border-color: var(--blue);
	box-shadow: 0 0.6rem 0 var(--blue);
	color: var(--blue);
	pointer-events: all;
}

/*--------------------ハズレポップアップ--------------------*/
.incorrect {
	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: 200;
}
.incorrect div {
	background: #DFECF7;
	border-radius: 1rem;
	padding: 1rem 1rem 3rem;
	text-align: center;
}
.incorrect .huseikai {
	color: var(--blue);
	font-weight: 700;
	font-size: 4rem;
}
.incorrect .message {
	margin-bottom: 3rem;
	font-weight: 700;
}
.incorrect .close{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3rem auto 0;
	font-size: 4rem;
	color: #fff;
	font-variation-settings: 'FILL' 1;
}


/*====================================================================
　全体マップ画面
====================================================================*/
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: 0.1rem solid #ccc;
}
.spot-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 3rem;
	width: 100%;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
}
.spot-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5df";
	font-size: 3.0rem;
	font-weight: 400;
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24;
	color: var(--brown);
	right: 0rem;
}
.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(--orange);
}
.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);
}
.spot-list .accordion_title{
	justify-content: flex-start;
}
.spot-list ul + .accordion_title{
	margin-top: 0.2rem;
}


/*====================================================================
　地点詳細画面
====================================================================*/
.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;
	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-img img{
	width: 100%;
	max-height: 30.0rem;
	object-fit: contain;
}

.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 tr:has(td:empty),
.spot-detail tr:has(td a:empty){
	display: none;
}
.spot-detail tr:last-of-type td a::after{
	position: relative;
	font-family: var(--ms);
	content: "\e89e";
	margin-left: 0.5em;
	top: 0.1rem;
	font-size: 0.9em;
}
.spot-detail td span{
	position: relative;
	display: inline-block;
	margin-left: 0.5em;
	top: 0.3rem;
	font-size: 1.1em;
}
.spot .button{
	margin-top: 2rem;
}

/*====================================================================
　引き換え画面
====================================================================*/
.exchange {
	text-align: center;
}
.redemption{
	border-collapse: collapse;
	border: var(--middle-gray) solid 0.2rem;
}
.redemption tr + tr{
	border-top: var(--middle-gray) solid 0.1rem;
}
.redemption th{
	background: var(--pale);
	width: 50%;
	padding: 0.5rem;
}
.redemption td{
	padding: 0.5rem;
}
.redemption th:nth-of-type(1),
.redemption td:nth-of-type(1){
	border-right: var(--middle-gray) solid 0.1rem;
}
.redemption dt {
	display: inline-block;
	background: var(--sky);
	border-radius: 100vw;
	padding: 0.5rem 1.5rem;
	margin: 2rem auto 0.5rem;
	color: #fff;
	font-weight: 700;
}
.redemption dd{

}
.exchange .caution {
	padding: 0 2rem;
	margin: 2rem auto 0.5rem;
	list-style-type: none;
	text-align: left;
}
.exchange-btn {
	text-align: center;
	margin: 2rem 0 1rem;
}
.exchange-btn label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
}
.exchange-btn p {
	font-size: 1.2rem;
}



/*====================================================================
　引き換え完了画面
====================================================================*/
.exchange-img {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: 24.4rem;
	margin: 2rem auto;
	font-size: 1.8rem;
	font-weight: 700;
}
.exchange-img.sumi img{
	animation: grayscale 0.4s 0.8s linear both;
}
.exchange-img.sumi::after {
	position: absolute;
	background: rgba(255, 255, 255, 0.8);
	border: var(--red) solid 0.3rem;
	border-radius: 1rem;
	content: "引換済";
	padding: 0.5rem;
	width: 10rem;
	top: 40%;
	left: calc(50% - 5rem);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--red);
	transform: rotate(-15deg);
	animation: scale-down-center-roll_15 0.4s 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.exchange-result {
	text-align: center;
	background: var(--pale);
	padding: 2rem;
	margin: 2rem auto;
}


/*====================================================================
　トピックス設定
====================================================================*/
.topics_list ul{
	margin: 0 auto;
}
.topics_list li{
	position: relative;
}
.topics_list li + li{
	border-top: #333 dotted 0.2rem;
	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(--main-color);
	font-size: 2.3rem;
}
.topics_list h3,
.topics_datail h3{
	margin-bottom: 0.5rem;
	color: var(--main-color);
	word-wrap: break-word;
}
.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;
	word-wrap: break-word;
}
.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(--main-color);
}
.form .caution{
	margin-top: 2rem;
}
.form .caution li{
	font-size: 1.2rem;
}
.form_comp{
	text-align: center;
}
.form_comp p{
	margin: 2rem auto;
}
.question{
  counter-reset: number;
}
.question dt::before{
	position: relative;
  counter-increment: number;
  content: "問" counter(number) "：";
	word-break: keep-all;
}

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(--blue);
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: var(--blue);
	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 {
	border-color: var(--blue);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: var(--blue);
	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.6rem;
	word-break: break-all;
	word-wrap: break-word;
}
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;
}
.form dd:has(#other1::selection) .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;
	z-index: 100;
}
.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: 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 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;
}