@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #EA5414;
	--orange: #FF9107;
	--yellow: #FFDE38;
	--brown: #634F42;
	--blue: #0E6EB8;
	--navy: #0B308E;
	--green: #24a740;
	--pale: #f1ede0;
	--main-color: #00AC73;
	--sub-color: #1042E8;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: 'Roboto', 'Noto Sans JP', sans-serif;
	/*--Material Symbols設定 案件ごとに設定--*/
	--ms: 'Material Symbols Sharp';
	/*--個別に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;
	background: #BEDECF url(../img/bg.png) repeat-y center top/37.5rem auto;
	min-height: 100dvh;
	color: var(--black);
	font-family: var(--main-font);
	font-size: 1.4rem;
	line-height: 1.5;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
body:has(.getstamp){
	background: #fff url(../img/bg_getstamp_pc.jpg) no-repeat center top/64.5rem auto;
}
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.3rem;
	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);
}--*/
/*--傾き→正位置
.scroll{
	transform : rotate(-45deg);
	transform-origin: left bottom;
	transition : all 500ms;
}
.scroll:nth-of-type(even){
	transform : rotate(45deg);
	transform-origin: right bottom;
}
.scrollin,
.scrollin:nth-of-type(even) {
	transform : rotate(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;
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding-bottom: 9rem;
}

.block {
	padding: 2rem 0rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	background: #fff;
	border: var(--main-color) solid 0.3rem;
	border-radius: 2em;
	padding: 2rem 1.5rem 3rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
	box-shadow: inset 0 0 0 0.3rem #fff, inset 0 0 0 0.4rem var(--sub-color), 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
	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 + .accordion_title{
	margin-top: 0.1rem;
}
.accordion_content{
	display: none;
	background: #fff;
	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: var(--middle-gray) solid 0.2rem;
	border-radius: 100vw;
	width: 100%;
	max-width: 30.4rem;
	margin: 0 auto;
	min-height: 5.5rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.8rem;
	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%;
	min-height: 4.7rem;
	padding: 0.5rem 0;
}
.button:disabled{
	background-color: var(--light-gray);
}
.bt_next::after {
	position: absolute;
	display: flex;
	justify-content: center;
	background: var(--light-gray);
	border-radius: 50%;
	width: 2.8rem;
	height: 2.8rem;
	font-family: var(--ms);
	content: "\e037";
	font-size: 2.5rem;
	font-variation-settings: 'FILL' 1, 'wght' 300;
	line-height: 1.2;
	right: 1rem;
}
.bt_back{
	gap: 1.5rem;
	background-color: var(--orange);
	border-color: #fff;
	width: fit-content;
	padding: 0 3.0rem 0 1.0rem;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bt_back::before {
	position: relative;
	display: flex;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	width: 2.8rem;
	min-width: 2.8rem;
	height: 2.8rem;
	font-family: var(--ms);
	content: "\e037";
	font-size: 2.5rem;
	font-variation-settings: 'FILL' 1, 'wght' 300;
	line-height: 1.2;
	color: var(--orange);
	transform: scale(-1,1);
}
.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::before {
	position: relative;
	font-family: var(--msr);
	content: "\e14d";
	font-weight: 200;
	font-size: 2.5rem;
	font-variation-settings: 'FILL' 1;
	transform: scale(-1,1);
}
.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;
}

/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_cookie,
.bt_submit{
	background-color: var(--sub-color);
	border-color: #fff;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bg_red{
	background-color: var(--red);
	border-color: #fff;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bt_submit.bt_next::after{
	background-color: #fff;
	color: var(--sub-color);
}
.bg_red.bt_next::after{
	background-color: #fff;
	color: var(--red);
}
.bg_blue{
	background-color: var(--blue);
	border-color: #fff;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bg_green{
	background-color: var(--green);
	border-color: #fff;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bg_yellow{
	background-color: var(--yellow);
	border-color: var(--brown);
	color: var(--brown);
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bg_sky{
	background-color: #A3E7FF;
	border-color: var(--sub-color);
	color: #3B4B7C;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}
body:has(.getstamp) header,
body:has(.quiz .answer) header{
	display: none;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	background: url(../img/bg_footer.png) no-repeat center bottom/100% auto;
	width: 37.5rem;
	height: 12.3rem;
	left: calc(50% - 37.5rem / 2);
	bottom: 0;
	z-index: 200;
}
footer:has(#bt_menu:checked){
	filter: none;
}
body:has(.getstamp) footer,
body:has(.quiz .answer) footer{
	display: none;
}
footer.hide{
	display: none;
}
footer ul {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0.1rem;
	width: 37.5rem;
	left: calc(50% - (37.5rem / 2));
}
footer ul li {
	text-align: center;
	flex-basis: 9.3rem;
}
footer ul li a{
	display: block;
	font-size: 1.3rem;
	text-decoration: none;
}


.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/100% auto;
	width: 100%;
	height: 8.1rem;
	z-index: 2;
}

#bt_menu:checked ~ .menu-btn{
	background-image: url(../img/footer_menu_on.png);
}
#bt_menu {
	display: none;
}

.menu-content {
	position: fixed;
	background: color-mix(in srgb, #fff 90%, transparent) url(../img/bg_mypage_bottom.png) repeat-y center top/100% auto;
	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);
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
}
.menu-content ul {
	display: block;
	padding: 0 2rem;
	height: calc(100% - 9rem);
	overflow-y: auto;
}
.menu-content ul li {
	border-bottom: var(--main-color) solid 0.2rem;
	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.8rem;
	font-weight: 700;
	color: var(--sub-color);
	text-decoration: none;
}
.menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 1rem;
}
.menu-content ul li a.bt_outside::after{
	content: "\e89e";
}
#bt_menu:checked ~ .menu-content {
	opacity: 1;
	transform: translateY(0);
	top: 0;
	left: 0;
}
body:has(#bt_menu:checked){
	overflow: hidden;
}
/*====================================================================
　規約・概要
====================================================================*/
.rule {
}
.rule dt{
	font-size: 1.6rem;
	font-weight: 700;
}
.rule dt span{
	color: var(--sub-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-word;
}
.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;
}
.rule li li{
	margin-top: 0;
}

/*====================================================================
　LINEログイン
====================================================================*/
.login{
	position: relative;
	padding: 2rem 0 3rem;
	text-align: center;
}
body:has(.login){
	position: relative;
	background: #fff;
}

/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	position: relative;
	background: url(../img/bg_mypage_bottom.png), linear-gradient(transparent calc(100% - 70.0rem), #fff calc(100% - 70.0rem));
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	padding-bottom: 12.0rem;
	text-align: center;
}
/*--------------------ユーザー情報--------------------*/
.info {
	position: relative;
	background: url(../img/bg_info.png) no-repeat center top/100% auto;
	padding-top: 0.4rem;
}
.info .myno {
	position: relative;
	background: #fff;
	border: #7EC5AE solid 0.3rem;
	border-radius: 10vw;
	width: 18.7rem;
	margin: 0 auto;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--main-color);
}
.info .myno small{
	font-size: 1.5rem;
}
.info .name {
	position: relative;
	margin: 0.5rem auto 3.0rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
}
.info .name small{
	font-size: 1.7rem;
}
.info p {
	font-size: 1.1rem;
	text-align: center;
}

/*--------------------トピックス--------------------*/
.topics_top {
	position: relative;
	background: #fff;
	border-radius: 1rem;
	padding: 1rem 0.2rem 1.5rem;
	margin: 2rem auto;
	width: 33.5rem;
}
.topics_top .title{
	position: relative;
	border-bottom: var(--border1);
	padding-bottom: 0.4rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--sub-color);
}
.topics_top ul {
	margin: 1rem auto 0;
	padding: 0 2rem;
}
.topics_top ul li {
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	color: var(--blue);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.topics_top ul li a{
	color: var(--blue);
	font-weight: 700;
}
.topics_top ul li span{
	margin-right: 1em;
	color: #aaa;
	font-size: 1.2rem;
}
.topics_top .topics_link{
	position: absolute;
	display: block;
	background: var(--main-color);
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 1rem;
	right: 1rem;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.5rem;
}
/*--------------------スタンプ一覧--------------------*/
.point {
	position: relative;
	background: url(../img/bg_score.png) no-repeat center bottom/100% auto;
	margin: 2.0rem auto 0;
	padding: 0 0 14.8rem;
}
.point .title{
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--main-color);
	-webkit-text-stroke: #fff 0.8rem;
	paint-order: stroke;
}
.score {
	position: relative;
	background: #fff;
	background-image: url(../img/bg_stripe.png), linear-gradient(#fff 55%, #589AF6 55%);
	background-repeat: repeat, no-repeat;
	background-position: left top, center top;
	background-size: 3.0rem auto, 100% auto;
	border: var(--sub-color) solid 0.1rem;
	border-radius: 0.7rem;
	width: 30.0rem;
	margin: 3.0rem auto;
	padding-bottom: 2.0rem;
	box-shadow: 0.5rem 0.5rem 0 #A5D7E9 ;
}
.score .title{
	position: relative;
	background: var(--sub-color);
	border-radius: 10vw;
	width: fit-content;
	padding: 0.2rem 2.0rem;
	margin: -1.8rem auto 0rem;
	font-size: 2.0rem;
	color: #fff;
	-webkit-text-stroke: #fff 0;
}
.score .flex{
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.0rem;
	font-weight: 700;
	line-height: 1;
}
.score span:nth-of-type(1){
	position: relative;
	width: 50%;
	font-size: 8.7rem;
	text-align: right;
}
.score span:nth-of-type(2){
	position: relative;
	width: 50%;
	font-size: 2.8rem;
	text-align: left;
}
.score span small{
	font-size: 1.4rem;
}
.score .button{
	background-color: #fff;
	border: var(--sub-color) solid 0.2rem;
	max-width: 23.1rem;
	min-height: 5.5rem;
	padding-right: 2rem;
	font-size: 2.5rem;
	color: var(--sub-color);
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.score .button::after{
	background-color: var(--sub-color);
	color: #fff;
}
.point .catch{
	position: relative;
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--navy);
	-webkit-text-stroke: #fff 0.8rem;
	paint-order: stroke;
}
.point .catch::before{
	position: absolute;
	background: var(--navy);
	content: "";
	width: 1.3rem;
	height: 1.9rem;
	clip-path: polygon(25% 0, 100% 100%, 0 50%);
	top: 0;
	left: calc(50% - 6em);
}
.point .catch::after{
	position: absolute;
	background: var(--navy);
	content: "";
	width: 1.3rem;
	height: 1.9rem;
	clip-path: polygon(75% 0, 100% 50%, 0 100%);
	top: 0;
	right: calc(50% - 6em);
}



.stamp-list{
	position: relative;
	background: url(../img/bg_stamplist.png) no-repeat center top/100% auto;
	height: 69.4rem;
}
.stamp-list .title{
	position: relative;
	top: -4rem;
	margin-bottom: -4.0rem;
}
.stamp-list .catch{
	position: relative;
	margin: 1.8rem auto 0;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--blue);
	z-index: 2;
}
.stamp-list .catch::before{
	position: absolute;
	background: url(../img/stamplist_catch_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 19.0rem;
	left: calc(50% - 37.5rem / 2);
	top: -3.0rem;
}
.stamp-list ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
}
.stamp-list li {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/bg_stamp1.png) no-repeat center center/100% auto;
	width: 17.8rem;
	height: 17.8rem;
	animation: top_stamp 1s linear infinite alternate both;
	transform-origin: right;
}
.stamp-list li:nth-of-type(2){
	background-image: url(../img/bg_stamp2.png);
	animation-delay: 1s;
	transform-origin: left;
}
.stamp-list li img{
	width: 12.0rem;
}
.bt_bussann{
	background-color: #fff;
	border-color: var(--navy);
	border-width: 0.3rem;
	margin: 2.0rem auto 1.5rem;
	padding-left: 2.5rem;
	font-size: 2.2rem;
	color: var(--navy);
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bt_bussann::before{
	position: absolute;
	background: url(../img/bt_bussann.png) no-repeat center center/100% auto;
	content: "";
	width: 11.5rem;
	height: 5.4rem;
	left: -2.6rem;
	top: -0.4rem;
}
.bt_bussann.bt_next::after{
	background-color: var(--navy);
	color: #fff;
}
.bt_qr{
	background: var(--navy);
	border-color: #fff;
	border-width: 0.3rem;
	padding-left: 2.5rem;
	font-size: 2.2rem;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
}
.bt_qr::before{
	position: absolute;
	background: url(../img/icon_qr.png) no-repeat center center/100% auto;
	content: "";
	width: 3.0rem;
	height: 3.0rem;
	left: 2.0rem;
}

/*--------------------賞品一覧--------------------*/
.prize-list {
	position: relative;
	background-image: url(../img/bg_prizelist.png), url(../img/bg_prizelist_top.png), linear-gradient(transparent 12.5rem, #F7DDE9 12.5rem), linear-gradient(90deg, #ABDCF0 50%, #E0F2FA 50%);
	background-repeat: repeat-y, no-repeat,  no-repeat, no-repeat;
	background-position: center top, center top, center top, center bottom;
	background-size: 100% auto, 100% auto, 100% auto, 100% 12.5rem;
	margin: -12.5rem auto 0;
	padding-bottom: 3.5rem;
}
.prize-list ul{
	position: relative;
	margin-top: 2.0rem;
}
.prize-list li {
	position: relative;
	width: 32.6rem;
	margin: 0 auto;
}
.prize-list li:nth-of-type(1){
	background: url(../img/bg_prize1.png) no-repeat center top 2.0rem/100% auto;
	height: 72.1rem;
}
.prize-list li:nth-of-type(2){
	background: url(../img/bg_prize2.png) no-repeat center top/100% auto;
	height: 50.7rem;
}
.prize-list li + li {
	margin-top: 3rem;
}
.prize_img{
	position: relative;
}
.rank{
	position: relative;
	height: 12.4rem;
	animation: swing 4s linear infinite alternate both;
	transform-origin: bottom;
}
.prize-list li:nth-of-type(2) .rank{
	animation-delay: -4s;
}
.rank::before{
	position: absolute;
	background: url(../img/flag1.png) no-repeat center center/100% auto;
	content: "";
	width: 6.8rem;
	height: 5.5rem;
	left: -0.9rem;
	top: -1.2rem;
}
.rank::after{
	position: absolute;
	background: url(../img/flag2.png) no-repeat center center/100% auto;
	content: "";
	width: 6.7rem;
	height: 3.5rem;
	right: 0;
	bottom: 0.8rem;
}
.winner {
	position: absolute;
	width: 7.3rem;
	right: -1.3rem;
	top: -1.3rem;
}
.prize_detail{
	position: relative;
	margin: 1.0rem auto;
}
.prize_name{
	position: relative;
	background: url(../img/garland.png) no-repeat center bottom/100% auto;
	width: 100%;
	height: fit-content;
	padding: 2.8rem 0 1.0rem;
	margin-bottom: 1.0rem;
}
.prize_name span{
	position: relative;
	display: inline;
	background: linear-gradient(transparent 50%, #A1E6FF 50%);
	width: 100%;
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--brown);
	line-height: 1.2;
}
.prize_name::before{
	position: absolute;
	background: url(../img/crown.png) no-repeat center center/100% auto;
	content: "";
	width: 32.6rem;
	height: 3.5rem;
	left: calc(50% - 32.6rem / 2);
	top: 0;
}
.prize_detail p{
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brown);
}
.prize-list hr{
	position: relative;
	display: block;
	background: url(../img/hr.png) no-repeat center center/100% auto;
	border: none;
	width: 24.4rem;
	height: 0.6em;
	margin: 2.0rem auto;
}
.prize-list .button{
	border-width: 0.5rem;
	max-width: 24.8rem;
	min-height: 6.7rem;
	font-size: 2.1rem;
}
.prize-list .button.bt_next::after{
	background-color: #fff;
}
.ishikawa,
.yamagata{
	margin-bottom: 2.0rem;
}
.ishikawa::after{
	position: absolute;
	background: url(../img/ishikawa.png) no-repeat center center/100% auto;
	content: "";
	width: 6.5rem;
	height: 8.3rem;
	left: 4.3rem;
	top: 0.3rem;
}
.yamagata::after{
	position: absolute;
	background: url(../img/yamagata.png) no-repeat center center/100% auto;
	content: "";
	width: 3.7rem;
	height: 6.4rem;
	left: 5.3rem;
	top: 0.4rem;
}


.oshi{
	position: relative;
	background: url(../img/bg_oshi.png) no-repeat center top/100% auto;
	background-image: linear-gradient(transparent calc(100% - 16.0rem), #fff 100%), url(../img/bg_oshi.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	padding: 4.9rem 0 5.0rem;
	margin-top: -4.7rem;
}
.oshi .term{
	position: relative;
	margin: 2.6rem auto;
}
.oshi p{
	font-size: 1.2rem;
	font-weight: 700;
}
.oshi .bt_outside{
	background-color: #fff;
	border-color: #0093C7;
	border-radius: 0.7rem;
	max-width: 30.0rem;
	min-height: 6.1rem;
	margin: 2.0rem auto;
	font-size: 1.7rem;
	color: #0093C7;
	box-shadow: 0 0.7rem 0 #0093C7;
}

/*--------------------リンク集集--------------------*/
.links {
}
.links a{
	background-color: var(--green);
	border: none;
	border-radius: 0.7rem;
	max-width: 30.0rem;
	min-height: 6.1rem;
	margin: 0 auto 4.2rem;
	font-size: 2.3rem;
	box-shadow: 0 0.7rem 0 #025E2B;
}
.links a::after{
	position: relative;
	right: 0;
}

/*--------------------シェア--------------------*/
.share {
}
.share .inner{
	position: relative;
	background: #fff;
	border: var(--blue) solid 0.3rem;
	border-radius: 1.1rem;
	width: 31.1rem;
	padding: 0 0 2.0rem;
	margin: 0 auto -2.0rem;
	top: -4.0rem;
}
.share .catch{
	position: relative;
	width: 25.5rem;
	margin: 1.0rem auto;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blue);
	text-align: left;
}
.share .copy-text {
	position: relative;
	background: url(../img/bg_copy-text.png) no-repeat center center/100% auto;
	width: 26.4rem;
	height: 13.9rem;
	margin: 1rem auto;
	font-weight: 700;
	font-size: 1.2rem;
}
.share .copy-text .title{
	position: relative;
}
.share #copyTarget{
	margin-bottom: 1.0rem;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--blue);
}
.share .bt_copy{
	background-color: #fff;
	border-color: var(--blue);
	max-width: 22.6rem;
	min-height: 4.5rem;
	font-size: 1.4rem;
	color: var(--blue);
}
.share a{
	position: relative;
	display: block;
	width: 23.4rem;
	margin: 1.1rem auto 0;
}
.share a img{
	border-radius: 0.8rem;
	box-shadow: 0 0.4rem 0 #8E28EB;
}




/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff url(../img/bg_getstamp.jpg) no-repeat center top/100% auto;
	text-align: center;
	/* overflow-y: scroll; */
	min-height: 100dvh;
}
/*--達成時のみにスタイルあてたい場合--*/
.getstamp:has(.congrats){
	background-color: #fff;
	background-image: url(../img/bg_getstamp_bottom.png), url(../img/bg_getstamp.jpg);
	background-repeat: no-repeat;
	background-position: center bottom, center top;
	background-size: 100% auto;
}
.stampget{
	position: relative;
	animation: scale-up-center 0.4s 1.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.stampget::before{
	position: absolute;
	background: url(../img/getstamp_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 41.1rem;
	left: calc(50% - 37.5rem / 2);
	top: 2.2rem;
	z-index: -1;
	animation: fade-in 0.3s 1.7s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .stamp-img {
	position: relative;
	margin: -8.7rem auto 4.5rem;
}
.getstamp .stamp-img::after{
	position: absolute;
	background: url(../img/stamp-img_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 9.3rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -4.0rem;
	animation: scale-up-center 0.4s 1.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img img{
	width: 28.7rem;
	height: 28.7rem;
	margin: 0 auto;
	animation: scale-up-center 1.2s 0.1s cubic-bezier(.5,0,.85,1.32) both;
}

.getstamp .spot-title {
	position: relative;
	padding: 0 1.5rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: #3B4B7C;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message {
	margin: 1.5rem auto 2.0rem;
	font-size: 1.8rem;
	font-weight: 700;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .commentary{
	position: relative;
	background: #fff;
	border: #3964F3 solid 0.6rem;
	border-radius: 2.0rem;
	width: 27.5rem;
	margin: 0 auto 2.0rem;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .commentary .title{
	position: relative;
	background: var(--sub-color);
	border-radius: 1.4rem 1.4rem 0 0;
	padding: 1.3rem;
	font-size: 3.0rem;
	font-weight: 700;
	color: #fff;
}
.getstamp .commentary p{
	position: relative;
	padding: 1.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
}
.getstamp .bg_red {
	background-color: var(--sub-color);
	margin: 0 auto 2.0rem;
	font-size: 2.1rem;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .bg_red::after{
	color: var(--sub-color);
}
.getstamp .congrats {
	position: relative;
	background: url(../img/bg_congrats.jpg) no-repeat center center/100% auto;
	width: 32.8rem;
	height: 24.2rem;
	margin: 11.5rem auto 3.0rem;
	font-size: 1.7rem;
	font-weight: 700;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats::after{
	position: absolute;
	background: url(../img/congrats_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 5.7rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -2.0rem;
}
.getstamp .congrats .title{
	position: relative;
	width: 37.5rem;
	left: calc(50% - 37.5rem / 2);
	top: -1.5rem;
	margin: 0 auto -0.5rem;
}
.getstamp .congrats .button{
	max-width: 24.8rem;
	margin-top: 1.5rem;
	font-size: 2.1rem;
}
.getstamp .close {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/bg_close.png) no-repeat center bottom/100% auto;
	width: 100%;
	height: 10.6rem;
	margin: auto auto 0;
	padding: 1.5rem 0 0;
	text-decoration: none;
	animation: fade-in 0.3s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .close span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	width: 4.9rem;
	height: 4.9rem;
	font-size: 3.8rem;
	font-variation-settings: 'wght' 500;
	color: var(--black);
}
.getstamp .close:has(.bt_back){
	background-image: url(../img/bg_close2.png);
	padding: 0 0 3.5rem;
}
.getstamp .close .bt_back{
	/* padding: 0 3.0rem; */
}
.getstamp .close .bt_back::before{
	/* display: none; */
}

/*====================================================================
　クイズ出題画面
====================================================================*/
.quiz {
}
/* エリアリスト利用時 */
.quiz .arealist {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	z-index: 5;
}
.quiz .arealist span{
	border: var(--main-color) solid 0.1rem;
	border-radius: 10vw;
	padding: 0.2rem 1.0rem;
	text-decoration: none;
	color: var(--main-color);
	font-weight: 500;
}
.quiz .arealist span.active{
	background-color: var(--main-color);
	color: #fff;
}
.quiz .area{
	margin-top: 0.2rem;
}
.quiz .areaname{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: var(--main-color);
	border: none;
	margin: 0;
	padding: 1rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.quiz .areaname::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5c5";
	font-size: 1.5em;
	right: 1rem;
}
.quiz .areaname.active::after{
	transform: rotateZ(180deg);
}
.quiz .area_list{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.quiz .areaname.active + .area_list,
.quiz .areaname_list.opne{
	display: block;
}
.spot-list .accordion_title{
	justify-content: flex-start;
}
.quiz ul + .accordion_title{
	margin-top: 0.2rem;
}
/* エリアリスト利用時ここまで */

.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.sumi a{
	padding-left: 3.0rem;
	color: var(--middle-gray);
}
.quiz li.sumi a::before{
	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;
	left: 0;
	font-family: var(--main-font);
	content: "済";
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--red);
}
.quiz .question,
.spot .question {
	position: relative;
	border: var(--sub-color) solid 0.2rem;
	margin-bottom: 2rem;
	padding: 1.8rem 1.0rem 1.0rem;
	font-weight: 700;
	font-size: 1.6rem;
	word-wrap: break-word;
}
.quiz .question::before,
.spot .question::before{
	position: absolute;
	background: #fff;
	content: "問題";
	padding: 0 0.5rem;
	left: 2.0rem;
	top: -1.7rem;
	font-family: var(--main-font);
	font-size: 2.0rem;
	color: var(--sub-color);
}
.quiz .answer {
	margin: 3rem auto;
}
.quiz input[type="radio"] {
	display: none;
}
.quiz label {
	display: block;
	background: #ccc;
	border-radius: 0.5rem;
	width: 90%;
	padding: 1.5rem;
	margin: 1rem auto;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--black);
	transition: .1s;
}
.quiz input[type="radio"]:checked + label {
	background: var(--main-color);
	color: #fff;
}
.quiz .button{
	max-width: 25.0rem;
	pointer-events: none;
}
.quiz:has(input[type="radio"]:checked) .button{
	background-color: var(--sub-color);
	border-color: #fff;
	box-shadow: 0 0.5rem 0 rgba(0 ,0 ,0 ,0.25);
	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: 1000;
}
.incorrect > div {
	background: #fff;
	border-radius: 1rem;
	width: 33.9rem;
	margin: 0 auto;
	padding: 1rem 1rem 2rem;
	text-align: center;
}
.incorrect .huseikai {
	color: var(--blue);
	font-weight: 700;
	font-size: 4rem;
}
.incorrect .message {
	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(#map) header{
	display: none;
}
/* 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;
} */

/*====================================================================
　エリア一覧画面
====================================================================*/
.area-list {
}
.area-list li + li {
	border-top: 0.1rem solid #ccc;
}
.area-list li {
}
.area-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 3rem 1rem 1rem;
	width: 100%;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
}
.area-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0.5rem;
}



/*====================================================================
　対象地点一覧
====================================================================*/
.spot-list {
}
.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 1rem 1rem;
	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: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0.5rem;
}
.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(--main-color);
}
.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 {
}
.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 .spot-img {
	position: relative;
	margin: 2rem auto;
}
.spot .spot-detail {
	border: 0.1rem solid #ccc;
	border-collapse: collapse;
	margin: 2rem 0;
	width: 100%;
	text-align: left;
}
.spot .spot-detail tr:has(td:empty){
	display: none;
}
.spot .spot-detail tr:nth-of-type(n+2){
	border-top: #eee solid 0.1rem;
}
.spot .spot-detail th,
.spot .spot-detail td {
	padding: 1rem 0.5rem;
	word-break: break-word;
}
.spot .spot-detail th {
	width: 5em;
	vertical-align: top;
	text-align: center;
}
.spot .spot-detail td {
	line-height: 1.2;
}
.spot .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;
}
body:has(.spot) .bt_back{
	min-width: 25.0rem;
}


.spot .question{
	margin-top: 3.0rem;
}
.spot .commentary {
	position: relative;
	border: var(--orange) solid 0.2rem;
	margin: 3rem auto 2.0rem;
	padding: 1.8rem 1.0rem 1.0rem;
	font-weight: 700;
	font-size: 1.6rem;
	word-wrap: break-word;
}
.spot .commentary::before{
	position: absolute;
	background: #fff;
	content: "解説";
	padding: 0 0.5rem;
	left: 2.0rem;
	top: -1.7rem;
	font-family: var(--main-font);
	font-size: 2.0rem;
	color: var(--orange);
}
.spot .commentary .answer{
	position: relative;
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
	color: var(--orange);
}
.spot .commentary .answer::before{
	position: relative;
	content: "A.";
}

/*====================================================================
　アンケート画面設定
====================================================================*/
.question{
  counter-reset: number;
}
.question dt::before{
	position: relative;
  counter-increment: number;
  content: "問" counter(number) "：";
	word-break: keep-all;
}

.questionnaire select{
	width: 100%;
}
.choices1-choices,.choices2-choices,.choices3-choices{
	display: none;
}
.questionnaire:has(.choices1:checked) .choices1-choices{
	display: block;
}
.questionnaire:has(.choices2:checked) .choices2-choices{
	display: block;
}
.questionnaire:has(.choices3:checked) .choices3-choices{
	display: block;
}
.questionnaire:has(.choices1:checked) .no-choices,
.questionnaire:has(.choices2:checked) .no-choices,
.questionnaire:has(.choices3:checked) .no-choices{
	display: none;
}
.questionnaire_popup{
	display: none;
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	padding: 5rem 2rem 0;
	top: 0;
	left: 0;
	z-index: 500;
}
.questionnaire_popup .inner {
	background: #fff;
	border-radius: 2rem;
	padding: 3rem 2rem;
	text-align: center;
}
.questionnaire_popup .inner p{
	font-size: 2.0rem;
	font-weight: 700;
}
.questionnaire_popup .inner p span{
	font-size: 1.3em;
	color: var(--red);
}
.questionnaire_popup .flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 2rem;
}
.questionnaire_popup .btn{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--light-gray);
	border: solid 0.3rem;
	border-radius: 1rem;
	width: 12rem;
	height: 5.5rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
}
.questionnaire_popup .btn.bt_submit{
	background-color: var(--red);
}

/*====================================================================
　トピックス設定
====================================================================*/
.topics_list {
}
.topics_list ul {
	margin: 0 auto;
}
.topics_list ul li {
	position: relative;
}
.topics_list ul li a{
	position: relative;
	display: block;
	text-align: left;
	padding: 0rem 3rem 1.5rem 0;
	text-decoration: none;
	color: var(--black);
}
.topics_list ul li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0;
	top: calc(50% - 1rem);
	color: var(--main-color);
}
.topics_list ul li + li{
	border-top: var(--border1);
	padding-top: 1.5rem;
}
.topics_list span{
	color: var(--dark-gray);
}
.topics_list p{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.topics_list h3,
.topics_datail h3{
	margin-bottom: 0.5rem;
	color: var(--sub-color);
	word-wrap: break-word;
}
.topics_datail {
}
.topics_datail .date{
	color: var(--dark-gray);
	text-align: left;
}
.topics_datail .note{
	text-align: left;
	margin-bottom: 2rem;
	word-break: break-word;
}


/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto 3.0rem;
}
.form dt {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	background: var(--pale);
	padding: 0.5em;
	font-size: 1.6rem;
	font-weight: 700;
}
.form dt small{
	margin-left: 0.5rem;
	font-size: 1.0rem;
	word-break: break-word;
}
.form * + dt{
	margin-top: 2rem;
}
.form dd {
	margin-top: 0.5rem;
	word-break: break-word;
}
.form dd.flex,
.form dd.flex50{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}
.form dd.flex label {
	margin-right: 1.0rem;
}
.form dd.flex50 label {
	width: 50%;
}
.form dd label {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.required,
.not-required {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 0.5rem;
	padding: 0.2rem 0.5rem;
	/* min-width: 3.6rem; */
	max-height: 2.1rem;
	font-size: 1.2rem;
	line-height: 1;
	word-break: keep-all;
}

.required {
	border: var(--red) solid 0.1rem;
	color: var(--red);
}

.not-required {
	border: var(--middle-gray) solid 0.1rem;
	color: var(--middle-gray);
}

.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;
}
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));
}
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(--main-color);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: var(--main-color);
	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{
	-webkit-appearance: none;
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-height: 3.6rem;
	padding: 0.5rem;
	font-size: 1.6rem;
	width: 100%;
}
input[type="date"]{
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-height: 3.6rem;
	padding: 0.5rem;
	font-size: 1.6rem;
}
textarea[disabled] {
	border-color: #ddd;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 0.5rem top 55%;
  background-size: 1.6rem 1.6rem;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	max-width: 100%;
	min-height: 3.6rem;
	padding: 0.5rem 2.5rem 0.5rem 0.5rem;
	font-size: 1.6rem;
	color: var(--black);
}
option:checked{
	background-color: var(--pale);
}
input:focus,
select:focus,
textarea:focus{
	outline: var(--main-color) solid 0.2rem;
}
::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 input,
.textPassword input:focus{
	outline: none;
}
.textPassword:has(input:focus){
	outline: var(--main-color) 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;
	margin-top: 0.2rem;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.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;
	width: 33.5rem;
	height: fit-content;
	max-height: 70%;
	padding: 2rem;
	margin: 0 auto 2rem;
	overflow-y: auto;
}
.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 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{
		position: relative;
		font-size: 14px;
	}
	body{
		max-width: 37.5rem;
		margin: auto;
	}
	/* html::before{
		position: fixed;
		background-color: #BEDECF;
		background-image: url(../img/bg_pc.png);
		background-repeat: repeat, repeat-y;
		background-position: center top;
		background-size: 44.0rem auto;
		content: "";
		width: 100vw;
		height: 100dvh;
		left: 0;
		top: 0;
	} */
	main {
		background: #BEDECF url(../img/bg.png) repeat-y center top -34.3rem/37.5rem auto;
		max-width: 37.5rem;
		min-height: 100dvh;
		margin: auto;
	}
	/* body:has(#map),
	body:has(#map) main{
		max-width: none;
	} */
}
/* @media screen and (min-width: 900px){
	html{
		position: relative;
		font-size: 12px;
	}
	html::before,
	html::after{
		position: fixed;
		background-color: #BEDECF;
		background-image: url(../img/bg_pc.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		width: calc((100% - 75.0rem) / 2);
		height: 100dvh;
		left: 0;
		top: 0;
		z-index: -1;
	}
	html::after{
		left: auto;
		right: 0;
	}
	body{
		position: absolute;
		background: #BEDECF;
		max-width: 37.5rem;
		margin: auto;
		left: calc(50% - 37.5rem);
		left: 50%;
		top: 0;
	}
	main {
		background: #BEDECF url(../img/bg.png) repeat-y center top -34.3rem/37.5rem auto;
		width: 37.5rem;
		min-height: 100dvh;
		margin: auto;
	}
	body:has(#map),
	body:has(#map) main{
		max-width: none;
	}
	header{
		position: fixed;
		max-width: 37.5rem;
		left: 50%;
		left: calc(50% - 37.5rem);
		top: 0;
	}
	body:has(.getstamp) header,
	body:has(.answer) header{
		display: block;
	}
	footer{
		left: 50%;
		left: calc(50% - 37.5rem);
		top: auto;
		bottom: 0;
	}
	body:has(.getstamp) footer,
	body:has(.answer) footer{
		display: block;
	}
	.menu-btn{
		display: none;
	}
	.menu-content{
	background: #fff url(../img/bg_mypage_bottom.png) repeat-y center top/100% auto;
		width: 37.5rem;
		height: calc(100dvh - 34.3rem);
		left: 50%;
		left: calc(50% - 37.5rem);
		top: auto;
		bottom: 0;
		transform: none;
		opacity: 1;
	}
	.menu-content ul {
		height: calc(100dvh - 34.3rem);
	}
	.menu-content ul li a{
		font-size: 1.4rem;
	}
	.section{
		padding-bottom: 0;
	}
	.mypage{
		padding-bottom: 2.0rem;
	}
} */
.view_pc .error{
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
}
.view_pc img{
	width: 150px;
	margin: 3rem auto;
}
