@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #E73E0C;
	--pink: #E73E0C;
	--orange: #E73E0C;
	--yellow: #C49D46;
	--blue: #3BA1EE;
	--green: #24a740;
	--pale: #E0F0FF;
	--main-color: #025CAB;
	--sub-color: #184621;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: "M PLUS Rounded 1c", sans-serif;
	--sub-font: '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;
	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);
	background: url(../img/bg_main.png) repeat center / 41.1rem 3.16rem,
	#0087CB;

}
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{
	background: linear-gradient(90deg, var(--orange) 1em, var(--main-color) 1em, var(--main-color) 2em, var(--orange) 2em, var(--orange) 3em, var(--main-color) 3em);
	background-repeat: repeat-x;
	background-position: left center;
	background-size: 4em auto;
	width: fit-content;
	margin: 0 auto 2rem;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 400;
	text-align: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding-bottom: 10.0rem;
}

.block {
	padding: 0rem 0rem 2.0rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	background: 
		url(../img/frame_top.png) no-repeat left top / 100% auto,
		url(../img/frame_btm.png) no-repeat left bottom / 100% auto,
		url(../img/frame_mid.png) repeat-y left top / 100% auto,
	#fff;
	padding: 2rem 1.5rem 3rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--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: url(../img/bg_btn_gray.png) no-repeat center / contain;
	width: 100%;
	max-width: 26.3rem;
	margin: auto;
	min-height: 6.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 2rem;
	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);
}
.bt_next::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5c8";
	font-size: 2rem;
	font-variation-settings: 'wght' 500;
	right: 2.4rem;
}
.bg_yellow{
	background-color: var(--yellow);
	color: var(--main-color);
}
/* .bt_back::before {
	position: absolute;
	font-family: var(--ms);
	content: "\f1e6";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 500;
	left: 1rem;
} */
.bt_sumi{
	background-color: var(--middle-gray);
	color: #ddd;
}
.bt_outside{
	background-image: url(../img/bg_outsidebtn.png);
	min-height: 5.8rem;
	max-width: 31.1rem;
	padding-block: 1rem;
	color: var(--main-color);
	&.isRed{
		background: 
			url(../img/frame_top_red.png) no-repeat left top / 100% auto,
			url(../img/frame_btm_red.png) no-repeat left bottom / 100% auto,
			url(../img/frame_mid_red.png) repeat-y left top / 100% auto
		;
		color: #F4744E;

	}
}
/* .bt_outside::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e89e";
	font-weight: 300;
	font-size: 2.5rem;
	right: 1.5rem;
} */
.bt_copy::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e14d";
	font-weight: 200;
	font-size: 2.5rem;
	right: 1rem;
}
.bt_checkin::after {
	position: relative;
	font-family: var(--ms);
	content: "\e569";
	font-variation-settings: 'FILL' 1;
	font-weight: 500;
	font-size: 2.0rem;
	margin-left: 1rem;
}
.bt-line{
	display: inline-flex;
	background: #06c755;
	border-radius: 1.0rem;
	width: auto;
	max-width: none;
	padding: 0 0 0 5.4rem;
	font-family: var(--sub-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;
}

/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_back{
	font-size: 1.8rem;
}
.bt_back,
.bg_blue{
	background-image: url(../img/bg_btn.png);
	box-shadow: 0 .7rem 0 #2679B7;
}
.bg_green{
	background-color: var(--green);
}
.bg_pink{
	background-color: var(--pink);
}

.bt_cookie,
.bt_submit,
.bg_orange{
	background-image: url(../img/bg_btn_red.png);
	box-shadow: 0 .7rem 0 #BC2B00;
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	background: url(../img/bg_footer.png) no-repeat center bottom/39rem auto;
	width: 100%;
	height: 10.4rem;
	left: 0;
	bottom: 0;
	z-index: 200;
}
footer:has(#bt_menu:checked){
	filter: none;
}
footer.hide{
	display: none;
}
footer ul {
	position: absolute;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 37.5rem;
	left: calc(50% - (37.5rem / 2));
}
footer ul li {
	text-align: center;
	flex-basis: 8.5rem;
}
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 top/100% auto;
	width: 100%;
	height: 10.4rem;
	z-index: 2;
}
.menubtn,
.menubtn:before,
.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;
}
.menubtn{
	top: 40%;
}
.menubtn:before {
	bottom: 0.8rem;
}
.menubtn:after {
	top: 0.8rem;
}
.menutext{
	position: absolute;
	display: block;
	bottom: 0.5rem;
	font-size: 1.3rem;
	color: #fff;
}

#bt_menu:checked ~ .menu-btn{
	background-image: url(../img/footer_menu_on.png);
}
#bt_menu {
	display: none;
}

.menu-content {
	position: fixed;
	background: #C49D46;
	width: 100%;
	height: 100%;
	padding-bottom: 11rem;
	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;
	height: 53.7rem;
	overflow-y: scroll;
	/* &::after{
		content:"";
		position: fixed;
		bottom: 11rem;
		left: 0;
		width: 100%;
		height: 2rem;
		background: linear-gradient(to top,rgba(0,0,0,0.2) 0%,transparent 100%);
		pointer-events: none;
	} */
}
.menu-content ul li {
	background: #fff;
	border-top: var(--orange) solid 0.3rem;
	border-bottom: var(--main-color) solid 0.3rem;
	width: 100%;
	height: auto;
	box-shadow: none;
	filter: none;
}
.menu-content ul li:first-of-type{
	border-top: none;
}
.menu-content ul li:last-of-type{
	border-bottom: 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(--main-color);
	text-decoration: none;
	text-align: left;
}
.menu-content ul li a::first-letter{
	color: var(--orange);
}
.menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\f1df";
	font-size: 2.5rem;
	color: var(--main-color);
	font-variation-settings: 'wght' 500;
	right: 1rem;
	text-shadow: 0 0.15rem 0 var(--orange), 0 0.2rem 0 var(--orange);
}
#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(--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-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;
}

/*====================================================================
　LINEログイン
====================================================================*/
.login{
	position: relative;
	padding: 2rem 0 3rem;
	text-align: center;
}
body:has(.login){
	position: relative;
	background: #fff;
}


/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	position: relative;
	padding-bottom: 2.0rem;
	text-align: center;
}
/*--------------------ユーザー情報--------------------*/
.info-wrap{
	background: url(../img/bg_info.png) no-repeat 50% 5rem / 37.5rem auto;
	position: relative;
	z-index: 2;
	color: #fff;
	padding-bottom: 1.6rem;

}
.info {
}
.info .band {
	background:url(../img/bg_main.png) repeat center / 41.1rem 3.16rem, #fff;
	
	padding-block: 1rem;
	img{
		width: 23.1rem;
		margin-inline:auto;

		&.mini{
			width: 22.3rem;
		}
	}
}

.info .name {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: .6rem;
}
.info .name small{
	font-size: 2.4rem;
}
.info .myno {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	height: 3.9rem;
	padding-top: 0.5rem;
	font-size: 2.1rem;
	font-weight: 700;
	&:before{
		content: "";
		width: .9rem;
		height: 1.8rem;
		background: url(../img/arrow_left.svg) no-repeat center / contain;
		margin-right: 2rem;
	}
	&:after{
		content: "";
		width: .9rem;
		height: 1.8rem;
		background: url(../img/arrow_right.svg) no-repeat center / contain;
		margin-left: 2rem;
	}
}
.info .myno small{
	font-size: 1.5rem;
}
.info p.msg {
	font-size: 1.1rem;
	font-weight: 500;
	text-align: center;
}

/*--------------------トピックス--------------------*/
.topics_top {
	position: relative;
	margin-top: 1.6rem;
	padding: 0rem 1.0rem;
}
.topics_top .title{
	position: relative;
	border-bottom: #fff .1rem solid;
	padding-bottom: 0.4rem;
	font-family: "Mochiy Pop One", sans-serif;
	font-weight: 400;
	font-size: 1.8rem;
	color: #fff;
}
.topics_top ul {
	margin: 1rem auto 0;
	padding: 0 1.0rem;
}
.topics_top ul li {
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
}
.topics_top ul li a{
	color: #fff;
	font-weight: 700;
}
.topics_top ul li span{
	margin-right: 1em;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
}
.topics_top .topics_link{
	position: absolute;
	display: block;
	color: #fff;
	background-color: var(--orange);
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 0rem;
	right: 1rem;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	text-decoration: none;
	letter-spacing: 0.5rem;
}
/*--------------------スタンプ一覧--------------------*/
@keyframes cloud_anime_list{
	from{
		background-position: 0 center;
	}
	to{
		background-position: 37.5rem center;
	}
}
@keyframes scale_anime_list{
  0%   { transform: scaleX(1); }
  50%  { transform: scaleX(1.02); }
  100% { transform: scaleX(1); }
}

.stamp-list {
	position: relative;
	background-color: #fff;
	background-image: url(../img/bg_stamplist.png), url(../img/dots_pink.png);
	background-repeat: no-repeat, repeat;
	background-position: center 4.7rem, left top;
	background-size: 37.5rem 21.6rem, 1rem auto;
	padding: 4.9rem 0 4.2rem;


	.cloud-btm,
	.cloud-top{
		background:url(../img/cloud_stamplist.svg) repeat center / 37.5rem auto;
		width: 37.5rem;
		height: 1.92rem;
		position: absolute;
		animation: cloud_anime_list 30s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	}

	.cloud-top{
		top: 0;
		left: 0;
	}

	.cloud-btm{
		bottom: 0;
		left: 0;
		transform: rotate(180deg);
	}

	.baloon{
		position: absolute;
		width: 14.1rem;
		top: 4.2rem;
		right: 1rem;
	}
	.catch-top{
		position: absolute;
		width: 11.2rem;
		top: 14.9rem;
		right: 1rem;
	}
	.catch-btm{
		position: absolute;
		width: 10.2rem;
		top: 20.5rem;
		right: 5.5rem;
	}
}

.point_all{
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background: url(../img/bg_point_all.png) no-repeat center bottom/100% auto;
	width: 20.2rem;
	height: 20.2rem;
	margin: 1.3rem auto 2.7rem 1.7rem;
	justify-content: center;
	&:after{
		content: "";
		bottom: 1.6rem;
		left: 0;
		width: 5.9rem;
		height: 4.1rem;
		background: url(../img/parts_stamplist.png) no-repeat center / contain;
		position: absolute;
	}
}
.point_all span:nth-of-type(1){
	position: relative;
	width: 12.3rem;
	margin-inline:auto;
	transform: translateX(-.5rem);
}

.point_all span:nth-of-type(2){
	font-size: 5.8rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	padding-right: 1rem;
	padding-bottom: 1rem;
}
.point_all span:nth-of-type(3){
	font-size: 1.9rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	padding-right: 1rem;
}

.point {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #fff;
	border-radius: 10vw;
	width: 32.9rem;
	height: 6.1rem;
	margin: 1.3rem auto;
	padding-right: 2.0rem;
	color: var(--color);

	.wrap{
		position: absolute;
		width: 95%;
		height: 100%;
		right: 0;
		bottom: 0;
		pointer-events: none;
		border: .4rem solid var(--color);
		border-radius: 50vw;
		z-index: 0;
	}

	&.isBlue{
		--color:#0068B7;
		&:after{
			content: "";
			width: 5.748rem;
			height: 1.57rem;
			transform: rotate(13deg);
			position: absolute;
			bottom: calc(100% + .25rem);
			right: 0;
			background: url(../img/parts_list.svg) no-repeat center / contain ;
		}
	}
	&.isRed{
		--color:#E83E0B;
	}
	&.isGold{
		--color:#C59E46;
	}
	&.isSilver{
		--color:#9EA6AB;
	}

}
.point img{
	position: relative;
	z-index: 1;
	width: 21.5rem;
	margin-right: 1.6rem;
	height: 6.1rem;
}
.point span{
	font-size: 2.3rem;
	font-weight: 800;
	width: 1.3em;
	text-align: end;
}


.spotlist{
	position: relative;
	background: 
		url(../img/bg_main_noop.png) repeat center -2rem/41.1rem auto,
		url(../img/bg_spotlist.png) no-repeat center 1.4rem / 35.5rem auto,
		#0087CB;	;
	padding: 2.1rem 0 7rem;

}

.spotlist::after{
	position: absolute;
	background: url(../img/bg_wave.png) no-repeat center bottom/81.5rem auto;
	content: "";
	width: 37.5rem;
	height: 5.25rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -1.2rem;
	z-index: 3;
}
.spotlist .title{
	width: 20.9rem;
	margin-inline:auto;
}
.spotlist .category{
	position: relative;
	background: url(../img/bg_category1.png?v=2) no-repeat center center/100% auto;
	height: 12.9rem;
	transform: translate(-100vw, 0);
}
.spotlist .category.scrollin{
	transform: translate(0,0);
}
.spotlist div:nth-of-type(3){
	background-image: url(../img/bg_category2.png?v=2);
		transform: translate(100vw, 0);

}
.spotlist div:nth-of-type(4){
	background-image: url(../img/bg_category3.png?v=2);
}
.spotlist div:nth-of-type(5){
	background-image: url(../img/bg_category4.png?v=2);
			transform: translate(100vw, 0);

}
.spotlist .category a{
	position: absolute;
	display: block;
	width: 12.8rem;
	top: 50%;
	transform: translateY(-50%);
}
.spotlist .category:nth-of-type(2) a{
	right: 0;
}
.spotlist .category:nth-of-type(4) a{
	right: 0;
}

.spotlist p{
	position: relative;
	margin: 3.0rem auto 1.0rem;
	padding: 0 1.5rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.2;
}
.spotlist .bt_outside{
	background-color: #fff;
	border-radius: 0;
	font-size: 1.6rem;
	color: var(--main-color);
}

/*--------------------賞品一覧--------------------*/

.prize-list {
	position: relative;
	background-color: #FFD5CB;
	background-repeat: no-repeat, repeat-y, repeat;
	background-position: center bottom, center top -1.5rem, left top;
	background-size: 100% auto, 100% auto, 1.4rem auto;
	padding: 1.25rem 0 4.5rem;
	>*{
		z-index: 1;
		position: relative;
	}
	.title{
		width: 20.9rem;
		margin-inline:auto;
	}
	.note{
		color: #000;
		font-size: 1.1rem;
		font-weight: 500;
		text-align: left;
		width: 25.3rem;
		margin-inline:auto;
		padding-left: 1em;
		text-indent: -1em;
		margin-top: 1rem;
	}
}
.prize_img{
	width: 31.9rem;
	height: 16.6rem;
	background-color: #D9D9D9;
	margin-inline:auto;
	margin-top: 1rem;
}
.prize-list ul{
	position: relative;
	margin-top: 2.0rem;
}
.prize-list li {

	position: relative;
	padding-top: 5rem;

	.bg{
		background: url(../img/bg_prizelist.png) no-repeat center -5rem / 39.1rem;
		position: absolute;
		inset: 0;
		z-index: -1;
	}

	.winner{
		position: absolute;
		top: 3.25rem;
		left: 5.75rem;
		font-weight: 800;
		font-size: 2rem;
		color: #2E80C7;
		line-height: 1.1;
		small{
			font-size: 1.3rem;
			display: block;
		}
	}
	.rank{
		font-weight: 900;
		font-size: 2.2rem;
		line-height: 1.2;
		color: #2E80C7;

	}


	.terms{

		.img{
			width: 18.5rem;
			margin-inline:auto;
		}
		.min{
			font-size: 1.6rem;
			font-weight: 800;
			color: #2E80C7;
			width: 23.7rem;
			height: 5.7rem;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			margin-inline:auto;
			line-height: 1.7rem;
			padding-bottom: 1rem;
			&.hasSpan{
				font-size: 1.4rem;
			}
		}
	}
	.prize_name{
		padding-top: .25rem;
		width: 11.4rem;
		height: 5.7rem;
		display: flex;
		margin-inline:auto;
		align-items: center;
		justify-content: center;
		position: relative;



		.min{
			color: #fff;
			font-size: 1.5rem;
			font-weight: 800;
			line-height: 1.8rem;
			&.small{
				font-size: 1.2rem;
				line-height: 1.1;
			}
			&.vsmall{
				font-size: 1rem;
				line-height: 1.1;
			}
			
		}
		&:after{
			content: "賞品";
			position: absolute;
			top: .25rem;
			left: calc(100% + 1.35rem);
			width: max-content;
			color: #2E80C7;
			font-size: 1.2rem;
			font-weight: 800;
		}
		&.wide{
			width: 12rem;
			&:after{
				left: calc(100% + 1rem);
			}
		}
	}

	/* PHP調整用 */
	&.name-wide{
		.prize_name{
			width: 12rem;
			&:after{
				left: calc(100% + 1rem);
			}
		}
	}
	&.name-samll{
		.min.small{
			font-size: 1rem;
			line-height: 1.1;
		}
	}
	&.terms-small{
		.min span{
			font-size: 1.4rem;
		}
	}



	&+li{
		margin-top: 4rem;
	}
	.button{
		margin-top: 2rem;
	}
	&:nth-child(even){
		.bg{
			transform: rotateY(180deg);
		}
		.winner{
			right: 5.75rem;
			width: fit-content;
			left: auto;
		}
		.prize_name{
			&:after{
				right: calc(100% + 1.35rem);
				left: auto;
			}
		}
	}
}

#particle_test{
	display: block;
	position: absolute;
	inset: 0;
	z-index: 0;
}

/*--------------------リンク集集--------------------*/
.links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	position: relative;
	padding: 4.5rem 0 8rem;
}
.links a{
	border-radius: 0;
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--main-color);
}

/*--------------------シェア--------------------*/
.share {
	position: relative;
	background-image: url(../img/bg_share_top.png), url(../img/bg_share_bottom.png), url(../img/bg_share.png), url(../img/bg_share.png), url(../img/bg_share.png);
	background-repeat: no-repeat;
	background-position: center top, center bottom, center top 3.2rem, center top 13.8rem, center top 24.4rem;
	background-size: 100% auto;
	padding: 7.5rem 0;
}
.share .title{
	font-size: 2.9rem;
	font-weight: 800;
	color: #fff;
	-webkit-text-stroke: var(--main-color) 1.0rem;
	paint-order: stroke;
	text-shadow: 0 0 0.5rem var(--main-color), 0 0 0.5rem var(--main-color);
}
.share .copy-text {
	position: relative;
	background: var(--pale);
	border-radius: 100vw;
	width: 24.0rem;
	padding: 1.5rem 0;
	margin: 1rem auto;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--main-color);
}
.share .copy-text .button{
	background-color: var(--main-color);
	max-width: 16.6rem;
	min-height: 3.6rem;
}
.share ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin: 2rem 0 0;
	padding: 0;
}
.share ul li {
	position: relative;
	border-radius: 10vw;
	width: 23.4rem;
	height: 5.7rem;
}
.share ul li a{
	display: block;
	text-decoration: none;
}
.share ul li a img{
	position: relative;
}
.insta{
	background: linear-gradient(90deg, #FF561F 0%, #FE0762 25%, #E100A7 50%, #B70FD4 75%, #9325E8 100%) no-repeat;
	overflow: hidden;
}
.twitter{
	background: #000;
}




/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1rem 0 2.3rem;
	background: 
		url(../img/bg_getstamp_btm.png) no-repeat center calc(100% - 2rem) / 32.5rem auto,
		var(--orange)
	;

	text-align: center;
	overflow-y: scroll;
	min-height: 100dvh;
}

.stampget{
	position: relative;
	width: 37.5rem;
	overflow-x: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	.min{
		width: 44rem;
		animation: scale-up-center 0.4s 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	}
	.sub{
		width: 30.8rem;
		margin-inline:auto;
		animation: scale-up-center 0.4s 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	}
}
.getstamp .stamp-img {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #fff;
    background-image: url(../img/dots_pink.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: 1rem auto;

	.cloud-btm,
	.cloud-top{
		height: 2.8rem;
		width: 37.5rem;
		position: absolute;

		&:after{
			content: "";
			height: 1.9rem;
			background: url(../img/cloud_getstamp_front.png) repeat-x left center / contain;
			position: absolute;
			inset: 0;
			animation: cloud_left 20s ease-in-out infinite,
			cloud_float 2s ease-in-out infinite;;
		}
		&:before{
			content: "";
			height: 1.9rem;
			width: 100%;
			background: url(../img/cloud_getstamp_back.png) repeat-x left center / contain;
			position: absolute;
			left: 0;
			bottom: 0;
			animation: cloud_right 20s ease-in-out infinite,
			cloud_float 2s ease-in-out infinite;;
		}
	}
	.cloud-top{
		top: 0;
		left: 0;
	}
	.cloud-btm{
		bottom: -0.3rem;
		left: 0;
		transform: rotateZ(180deg);
	}
}
@keyframes cloud_left {
	0%{
		background-position: left center;
	}

	100%{
		background-position: -44.6rem center;
	}
}
@keyframes cloud_right {
  0%{
    background-position: 0 center;
  }
  100%{
    background-position: 44.6rem center;
  }
}
@keyframes cloud_float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-0.3rem); }
  100% { transform: translateY(0); }
}
.getstamp .stamp-img img{
	width: 36rem;
	aspect-ratio: 1;
	margin: 3rem auto;
	animation: scale-up-center 0.4s 0.1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;

}

.getstamp .spot-title {
	position: relative;
	margin-bottom: 1.6rem;
	font-size: 2.2rem;
	color: #fff;
}
.getstamp .message {
	color: #fff;
	position: relative;
	width: 34.8rem;
	margin: 0 auto;
	padding-top: 1.6rem;
	font-size: 1.9rem;
	font-weight: 700;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	padding-bottom: 2rem;
}

.getstamp .congrats {
	position: fixed;
	inset: 0;
	overflow-y: auto; 
	overflow-x: hidden;
	height: auto;
	min-height: 100dvh;  
	background: 
		url(../img/bg_cong.png) repeat-y center top/41.1rem auto,
		rgba(255, 255,255, .83)
	;
	width: 100%;
	top: 0;
	left: 0;
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--main-color);
	animation: fade-in 1.2s 2.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	padding-top: 16rem;

	.ttl{
		width: 22.7rem;
		margin-inline:auto;
	}
	.msg{
		color: var(--black);
		font-weight: 800;
		font-size: 1.7rem;
		margin-top: 1.7rem;
	}
	.btn{
		position: absolute;
		bottom: -8rem;
		left: -1.2rem;
		display: block;
		width: 15.4rem;
	}
	.close{
		margin-top: 6.4rem;
	}

	&:before{
		content: "";
		position: absolute;
		inset: 0;
		background: url(../img/bg_cong_top.png) repeat-x 0 2.8rem / 38.1rem auto;
		animation: cong_top 20s linear infinite,
					cloud_float 2s ease-in-out infinite;
		pointer-events: none;
	}
	&:after{
		content: "";
		position: absolute;
		inset: 0;
		background: url(../img/bg_cong_btm.png) repeat-x calc(100% + 6.1rem) calc(100% - 2.6rem) / 38.7rem auto;
		z-index: -1;
		animation: cong_btm 26s linear infinite,
					cloud_float 2s 1s ease-in-out infinite;
		pointer-events: none;

	}
	
}
@keyframes cong_top{
  0%{
    background-position: 0 2.8rem;
  }
  100%{
    background-position: 38.1rem 2.8rem;
  }
}
@keyframes cong_btm{
  0%{
    background-position: calc(100% + 6.1rem) calc(100% - 2.6rem) ;
  }
  100%{
    background-position: calc(100% + 44.8rem) calc(100% - 2.6rem);
  }
}
.circle-wrap{
	position: relative;
	z-index: 1;
	width: 34.4rem;
	height: 34.4rem;
	margin-inline:auto;
	padding-top: 8.7rem;
	.bg{
		position: absolute;
		inset: 0;
		background: url(../img/clircle_cong.png) no-repeat center / contain;
		z-index: -1;
		animation: circle_anime 8s linear infinite;
	}
}
@keyframes circle_anime {
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}


.getstamp .close {
	display: block;
	width: 6.0rem;
	height: 6.0rem;
	margin: 2.5rem auto 0;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.getstamp .commentary{
	position: relative;
	background: #fff;
	border-radius: 1.2rem;
	margin-inline:auto;
	font-weight: 500;
	width: 31.1rem;
	padding: 1.6rem 1.5rem 2.4rem;;
	text-align: left;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/*====================================================================
　クイズ出題画面
====================================================================*/

.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{
	padding-left: 3.0rem;
	color: var(--middle-gray);
}
.quiz li a.sumi::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 .quiz_img{
	position: relative;
	margin: 0 auto 1rem;
}
.quiz .question {
	border: 0.2rem solid #ccc;
	margin-bottom: 2rem;
	padding: 0.8rem;
	font-weight: 700;
	font-size: 1.6rem;
	word-wrap: break-word;
}
.quiz .answer {
	margin: 3rem auto;
}
.quiz .answer p{
	position: relative;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
}
.quiz .answer p::before{
	position: relative;
	content: "答え：";
}
.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{
	pointer-events: none;
}
.quiz:has(input[type="radio"]:checked) .button{
	background-image: url(../img/bg_btn_red.png);
	pointer-events: all;
	box-shadow: 0 .7rem 0 #BC2B00;
}
.quiz .commentary{
	position: relative;
	border: var(--red) dashed 0.2rem;
	border-radius: 1.5rem;
	padding: 2.0rem 1.0rem 1.0rem;
}
.quiz .commentary::before{
	position: absolute;
	background: #fff;
	content: "解説";
	padding: 0 1em;
	left: calc(50% - 2em);
	top: -0.7em;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--red);
}

/*--------------------ハズレポップアップ--------------------*/
.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: #fff;
	border-radius: 1rem;
	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;
}


/*====================================================================
　抽選結果画面
====================================================================*/
.lot {
	overflow-x: hidden;
	overflow-y: auto;
}
.lot .lot-img{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 2.0rem;
	width: 37.5rem;
	height: 37.5rem;
	z-index: 2;
}
.lot .lot-img img{
	width: 80%;
	margin: auto;
}
.lot .atari::before{
	position: absolute;
	background: url(../img/bg_result.png) no-repeat center center/contain;
	content: "";
	width: 60.0rem;
	height: 60.0rem;
	z-index: -1;
	animation: rotate-center 15s linear infinite both;
}
.lot .atari{
	animation: scale-up-center 0.4s 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.lot .lot-result{
	position: relative;
	text-align: center;
	z-index: 2;
}
.lot .lot-result p{
	margin: 2.0rem auto;
	font-size: 2.1rem;
	font-weight: 700;
}
.lot .hazure{
	height: auto;
}


#particlesjs{
	box-sizing: border-box;
	position: absolute;
	display: block;
	width: 100vw;
	height: 100dvh;
	z-index: 1;
	overflow: unset;
	animation: fade-in 0.5s 0.7s linear both
}
#particlesjs canvas{
	display: block;
}

/*====================================================================
　電子スタンプ押印画面
====================================================================*/
.stamp-area {
	border: 0.2rem solid #ccc;
	padding: 0.5rem;
	margin: 2rem auto;
	width: 30.1rem;
	height: 30.1rem;
}

.stamp-area div {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.2rem solid #ccc;
	height: 100%;
	position: relative;
}

.stamp-area div p {
	color: #999;
	font-weight: 700;
	font-size: 2.4rem;
	text-align: center;
}

.bt-staff {
	margin: 3rem auto 0 ;
	text-align: right;
}

.bt-staff a {
	background: #999;
	border-radius: 100vw;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	font-size: 1.6rem;
	padding: 0.5rem 2rem;
	text-decoration: none;
}



/*====================================================================
　電子スタンプ押印完了画面
====================================================================*/
.stamp-area .stamp {
	transform: rotate(-8deg);
	width: 90%;
	animation: scale-down-center-roll_15 0.4s 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.store-name {
	margin: 2rem auto;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.use-date {
	text-align: center;
}

.use-date strong {
	background: #999;
	border-radius: 100vw;
	color: #fff;
	display: inline-block;
	padding: 0.2rem 1rem;
	margin-right: 1rem;
}



/*====================================================================
　電子スタンプ スタッフ専用画面
====================================================================*/
.staffpass {
	text-align: center;
}

.staffpass input {
	width: 100%;
}
.staff_close{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto;
	font-size: 4rem;
	color: #fff;
	font-variation-settings: 'FILL' 1;
	text-decoration: 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 .arealist {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	z-index: 5;
}
.spot-list .arealist span{
	border: var(--main-color) solid 0.1rem;
	border-radius: 10vw;
	padding: 0.2rem 2rem;
	text-decoration: none;
	color: var(--main-color);
	font-weight: 500;
}
.spot-list .arealist span.active{
	background-color: var(--main-color);
	color: #fff;
}
.spot-list .area{
	margin-top: 0.2rem;
}
.spot-list .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;
}
.spot-list .areaname::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5c5";
	font-size: 1.5em;
	right: 1rem;
}
.spot-list .areaname.active::after{
	transform: rotateZ(180deg);
}
.spot-list .area_list{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.spot-list .areaname.active + .area_list,
.spot-list .areaname_list.opne{
	display: block;
}
.spot-list .accordion_title{
	justify-content: flex-start;
}
.spot-list ul + .accordion_title{
	margin-top: 0.2rem;
}
/* エリアリスト利用時ここまで */

.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;
	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: "\e5c8";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 500;
	right: 0.0rem;
	color: var(--main-color);
	text-shadow: 0.2rem 0.1rem 0 var(--orange);
}
.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 h2{
	background: transparent;
	-webkit-text-fill-color: var(--main-color);
}
.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;
}



/*====================================================================
　アンケート画面設定
====================================================================*/
.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);
}
/*====================================================================
　履歴画面設定
====================================================================*/
.history {
}
.history ul {
	margin-bottom: 2rem;
}
.history li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	width: 100%;
	padding: 0.5rem 0;
	font-weight: 700;
}
.history li span {
	display: block;
}
.history li .history-date {
	min-width: fit-content;
	margin: 0.5rem 0 0;
	color: var(--dark-gray);
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.history li .category1{
	color: #E83E0B;
}
.history li .category2{
	color: #91999F;
}
.history li .category3{
	color: #C59E46;
}
.history li .category4{
	color: #0068B7;
}
.history li .history-pt,
.history li .history-prize {
	color: var(--main-color);
	font-size: 1.8rem;
}
.history li .history-sumi {
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-width: fit-content;
	height: fit-content;
	padding: 0.3rem 0.5rem;
	color: var(--middle-gray);
	font-size: 1.2rem;
}
.history li + li{
	border-top: var(--border1);
}
.history p.no-history {
	margin: 0 auto;
	font-size: 1.8rem;
	color: var(--middle-gray);
	font-weight: 700;
	text-align: center;
}


/*====================================================================
　トピックス設定
====================================================================*/
.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(--main-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;
}
.form dd.gender{
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.0rem;
}
.form dd.gender input{
	display: none;
}
.form dd.gender label{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 100%;
	padding: 1.0rem 1.5rem;
	text-align: center;
	color: var(--black);
	font-weight: bold;
	transition: .1s;
}
.form dd.gender label:has(input[type="radio"]:checked) {
	background: var(--main-color);
	border-color: var(--main-color);
	color: #fff;
}
.required,
.any {
	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.5rem;
	/* min-width: 3.6rem; */
	max-height: 2.1rem;
	color: var(--red);
	font-size: 1.2rem;
	line-height: 1;
  	overflow-wrap: normal;
	word-break: keep-all;
}
.any{
	border-color: var(--dark-gray);
	color: var(--dark-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: 100dvh;
  padding: 2rem;
  top: 0;
  left: 0;
  text-align: center;
  overflow-y: auto;
}

.attention div {
  background: #fff;
  border-radius: 1rem;
  height: 70%;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow-y: scroll;
}

.attention dl {
  margin: 0 0 2rem;
}

.attention dt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1rem;
}

.attention dt::before,
.attention dt::after {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: red;
  width: 2.4rem;
  height: 2.1rem;
  padding-top: 0.2rem;
  font-family: var(--ms);
  content: "\f22f";
  color: #fff;
  line-height: 1;
  clip-path: path("M10.264,3.039a2,2,0,0,1,3.473,0L22.29,18.008A2,2,0,0,1,20.554,21H3.446A2,2,0,0,1,1.71,18.008Z");
}

.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;
}

.attention ul li img.w100 {
  width: 100%;
}



/*====================================================================
　FAQ
====================================================================*/
.faq .title{
	background: var(--red);
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.faq img {
	width: 100%;
	margin: 1rem 0;
}
.faq dt {
	margin: 0;
	padding: 1rem 0;
	padding-left: 1.25em;
	text-indent: -1.25em;
	color: #185195;
}
.faq dt strong {
	font-size: 1.8rem;
}
.faq dd  {
	border-bottom: 0.1rem dotted #999;
	margin: 0 0 1rem;
	padding-bottom: 1em;
	padding-left: 1.25em;
	text-indent: -1.25em;
}
.faq dd strong {
	font-size: 1.8rem;
	color: var(--red);
}
.faq ul {
	padding: 0.5rem 0 0.5rem 1em;
	text-indent: -1em;
}
.faq .title2{
	background: #006298;
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
}
.faq .midashi{
	background: var(--red);
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
	font-weight: 700;
}

/*====================================================================
　自動翻訳の設定方法
====================================================================*/
.translate h2{
	margin-top: 0!important;
}
.translate h3.title {
  background-color: #006298;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.translate img {
  display: block;
  margin: 0.5rem auto;
}
.translate ol.numb {
  list-style: none;
  counter-reset: number;
}
.translate ol.numb li {
  position: relative;
  padding-left: 2rem;
}
.translate ol.numb li:not(:last-of-type) {
  border-bottom: var(--dark-gray) dotted 0.2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.translate ol.numb li::before {
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
  background: #006298;
  counter-increment: number;
  content: counter(number);
  top: 0.2em;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}
.translate ol.numb li div.box {
  margin: 0.5rem 0.5rem 0.5rem -1.5rem;
}
.translate ol.numb li img.inline {
  display: inline;
  width: 2em;
  margin: 0 0 -0.5rem;
}
.translate .siege{
	border: var(--black) solid 0.1rem;
	padding: 0.5rem;
}
.translate form{
	margin: 0 auto 2rem;
	text-align: center;
}
.eng{
	display: none;
}


/*====================================================================
　PCでアクセス時のエラー表示
====================================================================*/
@media screen and (min-width: 481px){
	html{
		font-size: 10px;
	}
	body{
		max-width: 750px;
		margin: auto;
	}
	main {
		max-width: 37.5rem;
		margin: auto;
	}
}
.view_pc .error{
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
}
.view_pc img{
	width: 150px;
	margin: 3rem auto;
}