@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--white: #fff;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #d60148;
	--orange: #F87B22;
	--yellow: #ffea2d;
	--blue: #0693D1;
	--green: #22BA4F;
	--pale: #e7f3f7;
	--main-color: #1A4165;
	--sub-color: #16B2E2;

	--border1: var(--main-color) solid 0.1rem;

	--ofset_center: calc(50% - 37.5rem / 2);

	--main-font: 'Roboto', 'Noto Sans JP', sans-serif;

	/*--Material Symbols設定 案件ごとに設定--*/
	--ms: 'Material Symbols Outlined';
	/*--個別に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;
	overflow-wrap: anywhere;
	/* word-break: normal;
	line-break: strict;
	text-wrap: pretty; */
}
/*--ベースとなるフォントサイズ 1rem=10px想定--*/
html{
	font-size: calc(1000vw / 375);
	scroll-behavior: smooth;
}
body {
	position: relative;
	background: var(--white) url(../img/bg.png) repeat left top/5.1rem 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.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
}
img {
	display: block;
	width: 100%;
}
a {
	color: var(--red);
}
ul{
	list-style-type: none;
}
.caution li,
.indent{
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}
.error {
	background: #fff;
	border: var(--red) solid 0.2rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin: 0.5rem auto;
	max-width: 35.5rem;
	color: var(--red);
	font-weight: 700;
	font-size: 1.3rem;
	text-align: center;
}


/*--下からせり上がり--*/
.scroll{
	opacity : 0;
	transform : translate(0, 5rem);
	transition : all 500ms;
}
.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
/*--回りながら大きくなる--
.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: 9.4rem;
}

.block {
	padding: 2rem 0rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	position: relative;
	background-color: var(--white);
	background-image: linear-gradient(to right, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to bottom, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to right, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to bottom, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem);
	background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
	background-position: center top, right top, center bottom, left top;
	background-size: 2.6rem 0.4rem, 0.4rem 2.6rem, 2.6rem 0.4rem, 0.4rem 2.6rem;
	border: var(--black) solid 0.2rem;
	border-radius: 0.5rem;
	padding: 2rem 1.5rem 3rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
}
.content::before{
	position: absolute;
	border: var(--black) solid 0.2rem;
	border-radius: 0.2rem;
	content: "";
	width: calc(100% - 1.2rem);
	height: calc(100% - 1.2rem);
	left: 0.4rem;
	top: 0.4rem;
	pointer-events: none;
}

/*--アコーディオン--*/
.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/btn_gray.png) no-repeat center
	 center/100% auto;
	width: 100%;
	max-width: 23.1rem;
	margin: auto;
	min-height: 5.8rem;
	padding: 0.2rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.7rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
}
:root{
	--disabled_bg: var(--light-gray);
	--disabled_box-shadow: inset 0 0 0 0.2rem var(--light-gray), inset 0 0 0 0.3rem #fff;
}
.button:disabled{
	background-image:url(../img/btn_gray.png);
}
.bt_next::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 1rem;
}
.bt_back{
	background-image: url(../img/btn_back.png);
	width: fit-content;
	min-width: 18.0rem;
	min-height: 4.6rem;
	padding: 0.6rem 2.5rem;
	font-size: 1.6rem;
	color: var(--main-color);
}
/* .bt_back::before {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cb";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	left: 1rem;
} */
.bt_sumi{
	background-color: var(--middle-gray);
	color: #ddd;
}
.button[target="_blank"]::after,
.button[target="_new"]::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;
}

/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_cookie,
.bg_red{
	background-image: url(../img/btn_red.png);
}
.bg_blue,
.bt_submit{
	background-image: url(../img/btn_blue.png);
}
.bg_green{
	background-image: url(../img/btn_green.png);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	position: relative;
	width: 100%;
}


/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	background: url(../img/bg_footer.png) no-repeat center bottom/100% auto;
	width: 100%;
	height: 9.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;
	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;
	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;
	height: 100%;
	width: 100%;
	z-index: 2;
}
#bt_menu {
	display: none;
}

.menu-content {
	position: fixed;
	background: var(--white) url(../img/bg.png) repeat left top/5.1rem 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);
	pointer-events: none;
}
.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.1rem;
	width: 100%;
	height: auto;
	box-shadow: none;
	filter: none;
}
.menu-content ul li:last-of-type{
	border: none;
}
.menu-content ul li a {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1.5rem 3rem 1.5rem 0.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-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;
}
#bt_menu:checked ~ .menu-content {
	opacity: 1;
	transform: translateY(0);
	top: 0;
	left: 0;
	pointer-events: all;
}
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: 2.0rem;
}
.rule dd{
	margin-bottom: 2.0rem;
	padding: 2.0rem 0 0;
	word-break: break-word;
}
.rule dd div{
	background: var(--pale);
	margin: 0.5rem 0;
	padding: 0.5rem;
	font-size: 1.3rem;
}
.rule li {
	padding-left: 1em;
	text-indent: -1em;
}
.rule li + li{
	margin-top: 1rem;
}



/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	text-align: center;
}

.mypage .title {
	font-weight: 700;
	font-size: 1.8rem;
}
.mypage .explain{
	margin: 2rem auto;
}

/*--------------------ユーザー情報--------------------*/
.info {
	position: relative;
	background-color: var(--white);
	background-image: url(../img/bg_info_line.png), url(../img/bg_info_line.png), url(../img/bg_info.png);
	background-repeat: repeat-x, repeat-x, no-repeat;
	background-position: left top, left bottom, center top;
	background-size: 0.6rem auto, 0.6rem auto, 100% auto;
	padding: 2.0rem 0;
	color: var(--main-color);
	z-index: 3;
	overflow: hidden;
}
.info::before{
	position: absolute;
	background: url(../img/ripples.png) repeat-x left center/1500% 100%;
	content: "";
	width: 4.5rem;
	height: 4.5rem;
	left: 2.0rem;
	top: 5.0rem;
	animation: sprite2 3s 1.5s steps(14) infinite both;
}
.info .name {
	position: relative;
	margin-bottom: 1.0rem;
	font-size: 2.1rem;
	font-weight: 700;
}
.info .name::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 3.0rem;
	height: 3.0rem;
	right: 0.0rem;
	top: 3.0rem;
	animation: sprite 1.5s -1s steps(7) infinite both, rotate-center 5s -1s linear infinite reverse both;
	transform-origin: left;
}
.info .name::after{
	position: absolute;
	background: url(../img/ripples.png) repeat-x left center/1500% 100%;
	content: "";
	width: 5rem;
	height: 5rem;
	right: 2.0rem;
	top: 2.5rem;
	animation: sprite2 3s steps(14) infinite both;
}
.info .name small{
	font-size: 1.7rem;
}
.info .myno {
	position: relative;
	background: url(../img/bg_myno.png) no-repeat center bottom/100% auto;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 2.1rem;
	font-weight: 700;
}
.info .myno::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 3.0rem;
	height: 3.0rem;
	left: 6.0rem;
	animation: sprite 1.5s steps(7) infinite both, rotate-center 3s linear infinite reverse both;
	transform-origin: left;
}
.info .myno::after{
	position: absolute;
	background: url(../img/ripples.png) repeat-x left center/1500% 100%;
	content: "";
	width: 4.5rem;
	height: 4.5rem;
	left: 4.0rem;
	top: 1.0rem;
	animation: sprite2 3s steps(14) infinite both;
}
.info .myno small{
	font-size: 1.5rem;
}
.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;
}
.topics_top ul {
	margin: 1rem auto 0;
	padding: 0 2rem;
}
.topics_top ul li {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
}
.topics_top ul li a{
	position: relative;
	color: var(--blue);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.topics_top ul li span{
	position: relative;
	margin-right: 1em;
	color: #aaa;
	font-size: 1.2rem;
	white-space: nowrap;
}
.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;
}
/*--------------------スタンプ一覧--------------------*/
.stamp-list {
	position: relative;
	background: url(../img/bg_stamplist.png) no-repeat center top/100% auto;
	height: 73.3rem;
	margin-top: -2.5rem;
	padding-top: 4.0rem;
	z-index: 2;
}
/* ポイント表示 */
.count{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.3rem;
	margin: 0 auto 2.7rem;
}
.point {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	background: url(../img/bg_point.png) no-repeat center center/100% auto;
	width: 15.8rem;
	height: 4.6rem;
	font-weight: 700;
	padding: 0 0.8rem 0 0;
	font-weight: 700;
}
.point img{
	position: relative;
	width: 9.0rem;
}
.point span:nth-of-type(1){
	width: fit-content;
	margin-left: auto;
	font-size: 3.1rem;
	word-break: keep-all;
	word-wrap: unset;
}
.point span:nth-of-type(2){
	padding-top: 1.0rem;
	font-size: 1.1rem;
}
.stamp-list .title{
	position: absolute;
	width: 12.9rem;
	left: 22.6rem;
	top: 9.9rem;
}
.stamp-list .title::before{
	position: absolute;
	background: url(../img/windbell.png) no-repeat left center/800% auto;
	content: "";
	width: 3.1rem;
	height: 5.9rem;
	left: 6.1rem;
	top: 21.0rem;
	animation: sprite2 1.5s steps(7) infinite both;
}

.stamp-list ul {
	position: relative;
	height: 44.3rem;
}
.stamp-list li {
	position: absolute;
	width: 8.0rem;
}
.stamp-list li:nth-of-type(1){
	left: 2.4rem;
	top: 0;
}
.stamp-list li:nth-of-type(2){
	left: 13.1rem;
	top: 3.4rem;
}
.stamp-list li:nth-of-type(3){
	left: 2.8rem;
	top: 11.3rem;
}
.stamp-list li:nth-of-type(4){
	left: 13.5rem;
	top: 15.5rem;
}
.stamp-list li:nth-of-type(5){
	left: 2.5rem;
	top: 22.5rem;
}
.stamp-list li:nth-of-type(6){
	left: 2.4rem;
	top: 33.3rem;
}
.stamp-list li:nth-of-type(7){
	left: 13.5rem;
	top: 27.9rem;
}
.stamp-list li:nth-of-type(8){
	left: 24.7rem;
	top: 31.0rem;
}
.stamp-list li:nth-of-type(9){
	left: 19.5rem;
	top: 42.7rem;
}
.stamp-list li:nth-of-type(10){
	left: 26.5rem;
	top: 52.9rem;
}

.stamp-list .btn{
	position: relative;
	display: block;
	width: 13.9rem;
	margin-left: 3.4rem;
	opacity: 1;
	transform: none;
}
.stamp-list .btn::after{
	position: absolute;
	display: block;
	background: url(../img/nozomi.png) no-repeat right center/20.6rem auto;
	content: "";
	width: 15.8rem;
	width: 0.1rem;
	height: 4.3rem;
	left: -3.4rem;
	bottom: -2.1rem;
	transition: all 500ms;
}
.stamp-list .btn.scrollin::after{
	width: 15.8rem;
}


/*--------------------賞品一覧--------------------*/
.prize-list {
	position: relative;
	background: url(../img/bg_prizelist.png) no-repeat center top/100% auto;
	margin-top: -5.9rem;
	padding-bottom: 10.1rem;
	overflow: hidden;
}
.prize-list::after{
	position: absolute;
	display: block;
	background: url(../img/nozomi2.png) no-repeat left center/20.6rem auto;
	content: "";
	width: 20.6rem;
	width: 18.6rem;
	height: 4.7rem;
	right: 0rem;
	bottom: 2.2rem;
}
.prize-list .title{
	position: relative;
}
.prize-list::before,
.prize-list .title::before{
	position: absolute;
	background: url(../img/ripples.png) repeat-x left center/1500% 100%;
	content: "";
	width: 5.5rem;
	height: 5.5rem;
	right: 2.8rem;
	top: 6.5rem;
	animation: sprite2 3s steps(14) infinite both;
}
.prize-list::before{
	right: 9.8rem;
	top: 4.5rem;
	animation-delay: 1s;
}
.prize-list .title::after{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 3.0rem;
	height: 3.0rem;
	right: 9.0rem;
	top: 8.0rem;
	animation: sprite 1.5s steps(7) infinite both, rotate-center 3s linear infinite both;
	transform-origin: right;
}
.prize-list ul{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4.7rem;
}
.prize-list li {
	position: relative;
	background: url(../img/bg_prize.png) no-repeat center center/100% auto;
	width: 31.0rem;
	padding: 1.6rem;
}
.prize-list li::before,
.prize-list li .inner::before,
.prize-list li .inner::after{
	position: absolute;
	background: no-repeat center center/100% auto;
	content: "";
	z-index: 3;
}
.prize-list li:nth-of-type(1)::before{
	background-image: url(../img/morning_glory1.png);
	width: 7.3rem;
	height: 7.2rem;
	right: -1.1rem;
	top: -1.2rem;
}
.prize-list li:nth-of-type(2)::before{
	background-image: url(../img/morning_glory2.png);
	width: 9.1rem;
	height: 6.2rem;
	left: 2.0rem;
	top: -1.5rem;
}
.prize-list li:nth-of-type(3)::before{
	background-image: url(../img/morning_glory3.png);
	width: 9.1rem;
	height: 6.6rem;
	right: -2.0rem;
	top: -1.8rem;
}
.prize-list li .inner{
	position: relative;
	background: var(--white);
	padding-bottom: 2.3rem;
}
.prize-list li:nth-of-type(1) .inner::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 5.0rem;
	height: 5.0rem;
	left: 2.0rem;
	top: -1.5rem;
	animation: sprite 1.5s steps(7) infinite  both, rotate-center 3s linear infinite reverse both;
	transform-origin: left;
}
.prize-list li:nth-of-type(1) .inner::after{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 4.0rem;
	height: 4.0rem;
	right: -1.0rem;
	bottom: 0.5rem;
	animation: sprite 1.5s -1s steps(7) infinite  both, rotate-center 3s linear infinite both;
	transform-origin: right;
}
.prize-list li:nth-of-type(2) .inner::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 5.0rem;
	height: 5.0rem;
	left: 0rem;
	top: 12.5rem;
	animation: sprite 1.5s steps(7) infinite  both, rotate-center 5s linear infinite reverse both;
	transform-origin: left;
}
.prize-list li:nth-of-type(2) .inner::after{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 4.0rem;
	height: 4.0rem;
	right: -5.0rem;
	bottom: 11.5rem;
	animation: sprite 1.5s -1s steps(7) infinite both, rotate-center 3s -1s linear infinite reverse both;
	transform-origin: left;
}
.prize-list li:nth-of-type(3) .inner::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 3.5rem;
	height: 3.5rem;
	left: 0rem;
	top: 18.5rem;
	animation: sprite 1.5s steps(7) infinite  both, rotate-center 3s linear infinite reverse both;
	transform-origin: left;
}
.prize-list li:nth-of-type(3) .inner::after{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 5.0rem;
	height: 5.0rem;
	right: -5.0rem;
	top: 2.5rem;
	animation: sprite 1.5s -1s steps(7) infinite both, rotate-center 6s -1s linear infinite reverse both;
	transform-origin: left;
}
.winner {
	position: absolute;
	width: 8.1rem;
}
.prize-list li:nth-of-type(2) .winner{
	left: 20.1rem;
	top: -3.2rem;
}
.prize-list li:nth-of-type(3) .winner{
	left: 0.8rem;
	top: -4.1rem;
}



/*--------------------リンク集--------------------*/
.links {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.0rem;
	padding-top: 1.0rem;
}
.links .button{
	background-image: url(../img/btn_links.png);
	max-width: 29.7rem;
	min-height: 8.5rem;
	color: var(--blue);
	line-height: 1.2;
}
.links a:nth-of-type(2){
	background-image: url(../img/btn_links2.png?t=4);
	color: var(--orange);
}
.links a:nth-of-type(3){
	background-image: url(../img/btn_links3.png?t=4);
	color: var(--green);
}
.links .button::after{
	color: var(--main-color);
}

/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	background: url(../img/bg_getstamp_bottom.png) no-repeat center bottom/100% auto, url(../img/bg_getstamp_top.png) no-repeat center top/100% auto;
	padding: 0 0 5.0rem;
	text-align: center;
	overflow: hidden;
	min-height: 100dvh;
}
.getstamp::before,
.getstamp::after{
	position: absolute;
	background: url(../img/ripples.png) repeat-x left center/1500% 100%;
	content: "";
	width: 10.0rem;
	height: 10.0rem;
	left: -1.0rem;
	bottom: -3.0rem;
	animation: sprite2 3s steps(14) infinite both;
}
.getstamp::after{
	left: 3.5rem;
	bottom: 1.0rem;
	animation-delay: 1s;
}
/* デザイン調整時のみ使用 */
/* .getstamp *{
	animation: none!important;
} */
/*--達成時のみにスタイルあてたい場合--
.getstamp:has(.congrats){

}*/
.stampget{
	position: absolute;
	background: url(../img/bg_stampget.png) no-repeat center center/100% auto;
	width: 7.2rem;
	left: 28.3rem;
	top: 4.6rem;
	/* animation: scale-up-center 0.4s 1.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both; */
}
.stampget img{
	position: relative;
	animation: fade-in 0.5s 1.4s linear both;
}
.stampget::before,
.stampget::after{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% auto;
	content: "";
	transform-origin: left;
}
.stampget::before{
	width: 3.5rem;
	height: 3.5rem;
	left: 2.0rem;
	top: -1.8rem;
	animation: sprite 1.5s steps(7) infinite both, rotate-center 3s linear infinite reverse both;
}
.stampget::after{
	width: 4.0rem;
	height: 4.0rem;
	bottom: -3.0rem;
	right: -1.0rem;
	animation: sprite 1.5s steps(7) infinite both, rotate-center 5s -1.5s linear infinite reverse both;
}
.getstamp .stamp-img {
	position: relative;
	width: 23.8rem;
	height: 23.8rem;
	margin: 9.3rem auto 7.1rem 2.7rem;
	animation: fade-in 1.0s 0.4s linear both;
}
.getstamp .stamp-img img{
	/* animation: blur 1.0s 0.4s linear both, fade-in 1.0s 0.4s linear both; */
}

.getstamp .spot-title {
	position: relative;
	padding: 0 2.0rem;
	margin: 0 auto 5.7rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--main-color);
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message {
	margin: 1.5rem auto;
	font-weight: 700;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats {
	position: fixed;
	width: 100vw;
	height: 100dvh;
	left: 0;
	top: 0;
	padding: 6.1rem 0 0;
	animation: fade-in 1.2s 2.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	z-index: 10;
	overflow: hidden;
}
.getstamp .congrats::before{
	position: fixed;
	background: var(--white) url(../img/bg.png) repeat left top/5.1rem auto;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.9;
}
.getstamp .congrats::after{
	position: absolute;
	background: url(../img/windbell.png) no-repeat left center/800% auto;
	content: "";
	width: 4.1rem;
	height: 7.7rem;
	left: 28.2rem;
	top: 49.0rem;
	animation: sprite2 1.5s steps(7) infinite both;
}
.getstamp .congrats .inner{
	position: relative;
	background: var(--white);
	border: var(--black) dashed 0.4rem;
	border-radius: 0.5rem;
	width: 28.5rem;
	margin: 0 auto;
	padding: 0 0 3rem;
	box-shadow: 0 0 0 0.1rem var(--black), inset 0 0 0 0.1rem var(--black);
}
.getstamp .congrats p{
	position: relative;
	margin-bottom: 1.5rem;
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--main-color);
}
.fireflower,
.fireflower span{
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.fireflower::before,
.fireflower::after,
.fireflower span::before,
.fireflower span::after{
	position: absolute;
	background: url(../img/fireflower_red.png) no-repeat center center/100% auto;
	content: "";
	animation: fireflower 3s infinite both;
}
.fireflower::before{
	width: 13.8rem;
	height: 13.8rem;
	left: 25.7rem;
	top: -0.3rem;
}
.fireflower::after{
	background-image: url(../img/fireflower_blue.png);
	width: 10.1rem;
	height: 10.1rem;
	left: -2.4rem;
	top: 18.7rem;
	animation-delay: -1s;
}
.fireflower span::before{
	background-image: url(../img/fireflower_blue.png);
	width: 10.9rem;
	height: 10.9rem;
	left: 28.0rem;
	top: 24.1rem;
	animation-delay: -2s;
}
.fireflower span::after{
	width: 11.2rem;
	height: 11.2rem;
	left: -0.1rem;
	top: 44.0rem;
	animation-delay: -1.5s;
}

.getstamp .button {
	margin: 0 auto;
	animation: fade-in 1.2s 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .goldfish{
	position: absolute;
	left: 0;
	bottom: 0;
}
.getstamp .goldfish::before{
	position: absolute;
	background: url(../img/goldfish.png) repeat-x left center/800% 100%;
	content: "";
	width: 3.0rem;
	height: 3.0rem;
	left: 2.0rem;
	bottom: 2.0rem;
	animation: sprite 1.5s steps(7) infinite both, rotate-center 3s linear infinite both;
	transform-origin: right;
}

.getstamp .close {
	position: relative;
	display: block;
	width: 5.0rem;
	margin: 2.0rem auto auto;
	animation: fade-in 1.2s 2.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/*--共通--*/
.splash{
	position: fixed;
	background: color-mix(in srgb, var(--white) 90%, transparet);
	background: var(--white) url(../img/bg.png) repeat left top/5.1rem auto;
	background: rgba(255, 255, 255, 0.8);
	width: 100vw;
	height: 100dvh;
	top: 0;
	left: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 10;
	animation: fade-in 0.2s 1.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) reverse both;
}
.splash{
	animation: fade-in 1.6s 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) reverse both;
}
.splash div{
	position: absolute;
	width: 35rem;
	height: 35rem;
	top: 2.5rem;
	left: calc(50% - 17.5rem);
}
.splash div::before,
.splash div::after,
.splash div span,
.splash div span::before,
.splash div span::after{
	position: absolute;
	background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.16) 50%, rgba(0,0,0,0) 55%);
	border-radius: 50%;
	content: "";
	width: 35rem;
	height: 35rem;
	top: 0rem;
	left: calc(50% - 17.5rem);
	animation: ripples 1.6s ease-out both;
}
.splash div::before{animation-delay: 0.3s;}
.splash div::after{animation-delay: 0.7s;}
.splash div span::before{animation-delay: 1.2s;}
.splash div span::after{animation-delay: 1.8s;}
@keyframes ripples{
	0%{transform: scale(0);opacity: 1;}
	100%{transform: scale(1.5);opacity: 0;}
}


/*====================================================================
　全体マップ画面
====================================================================*/
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 dt{
	position: relative;
	background: var(--main-color);
	padding: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
}
.area-list li + li {
	border-top: 0.1rem solid #ccc;
}
.area-list li {
}
.area-list dd a,
.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 dd a::after,
.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 h3{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.spot-list h3 span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.0rem;
	font-size: 1.4rem;
}
.spot-list h3 span::before,
.spot-list h3 span::after{
	position: relative;
	border-top: var(--black) solid 0.1rem;
	content: "";
	width: 3.0rem;
	height: 0.1rem;
}
.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: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0.5rem;
}
.spot-list li a img{
	position: absolute;
	width: 2.5rem;
	left: 0;
}
.spot-list li a .category{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--middle-gray);
	border-radius: 10vw;
	width: fit-content;
	padding: 0.2rem 1.0rem;
	margin-left: auto;
	font-size: 1.2rem;
	color: #fff;
}
.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: "\e835";
	font-variation-settings: 'FILL' 1;
	left: 0.5rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--light-gray);
}




/*====================================================================
　地点詳細画面
====================================================================*/
.spot {
	position: relative;
	background-color: var(--white);
	background-image: linear-gradient(to right, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to bottom, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to right, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem), linear-gradient(to bottom, var(--black), var(--black) 1.2rem, transparent 1.2rem, transparent 2.6rem);
	background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
	background-position: center top, right top, center bottom, left top;
	background-size: 2.6rem 0.4rem, 0.4rem 2.6rem, 2.6rem 0.4rem, 0.4rem 2.6rem;
	border: var(--black) solid 0.2rem;
	border-radius: 0.5rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
	padding: 2rem 1.5rem 3rem;
}
.spot:has(.spot-img){
	padding: 0.6rem 0.6rem 3rem;
}
.spot::before{
	position: absolute;
	border: var(--black) solid 0.2rem;
	border-radius: 0.2rem;
	content: "";
	width: calc(100% - 1.2rem);
	height: calc(100% - 1.2rem);
	left: 0.4rem;
	top: 0.4rem;
	pointer-events: none;
}
.spot h2{
	position: relative;
	display: flex;
	flex-direction: column;
}
.spot h2 span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.0rem;
	font-size: 1.4rem;
}
.spot h2 span::before,
.spot h2 span::after{
	position: relative;
	border-top: var(--black) solid 0.1rem;
	content: "";
	width: 3.0rem;
	height: 0.1rem;
}
.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;
	width: 90%;
	padding: 0.5rem;
	margin: 2rem auto;
	font-size: 1.4rem;
}

.spot .spot-img {
	position: relative;
	margin: 0 auto 2rem;
}
.spot .spot-img img{
	/* border-radius: 0.8rem 0.8rem 0 0;
	border-radius: 0.3rem 0.3rem 0 0; */
}
.spot-trivia{
	position: relative;
	width: 90%;
	margin: 0 auto;
}
.spot .spot-detail {
	border: 0.1rem solid #ccc;
	border-collapse: collapse;
	width: 90%;
	margin: 2rem auto;
	text-align: left;
}
.spot .spot-detail tr:has(td:empty),
.spot .spot-detail tr:has(td a[href=""]){
	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;
}






/* 確認用チェック */
.check-btn {
	text-align: center;
	margin: 2rem 0 1rem;
}
.check-btn label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
}
.check-btn p {
	font-size: 1.2rem;
}
.check-btn .button{
	margin-top: 1.0rem;
}
.check-btn:has(input:not(:checked)) .button{
	background-image:url(../img/btn_gray.png);
	pointer-events: none;
}



/*====================================================================
	クーポン
====================================================================*/
.coupon {
	text-align: center;
}
.coupon {
	text-align: center;
}
.coupon .coupon-name{
	margin: 2rem auto;
	width: 25rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--brown);
}
.coupon .coupon-cord{
	position: relative;
	background: url(../img/bg_prize.png) repeat center top/6.2rem auto;
	padding: 1.5rem;
	margin: 0 auto 2.0rem;
	font-size: 3.4rem;
}
.coupon .bt_copy{
	margin-bottom: 3.0rem;
	font-size: 1.4rem;
}
.coupon .bt_copy::after{
	/* position: relative;
	right: 0; */
	font-size: 1.8rem;
}
.coupon .bt_submit{
	/* background: var(--white);
	border: var(--white) solid 0.3rem;
	border-radius: 100vw;
	max-width: 25.0rem;
	min-height: 5.6rem; */
	padding-right: 1.5rem;
	font-size: 1.6rem;
	/* color: var(--blue); */
	line-height: 1.2;
	/* box-shadow: inset 0 0 0 0.2rem var(--blue); */
}
.coupon .bt_submit::after{
	font-size: 1.8rem;
	right: 1.0rem;
}
.coupon .rule{
	text-align: left;
}


/*====================================================================
　アンケート画面設定
====================================================================*/
.question{
  	counter-reset: number;
}
.question dt p::before{
	position: relative;
	counter-increment: number;
	content: "問" counter(number) "：";
  	overflow-wrap: normal;
	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: url(../img/btn_back.png) no-repeat center center/200% auto;
	border: none;
	border-radius: 1rem;
	width: 12rem;
	height: 5.5rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
}
.questionnaire_popup button:nth-of-type(2){
	background-image: url(../img/btn_red.png);
	color: var(--white);
}

/*====================================================================
　トピックス設定
====================================================================*/
.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: var(--white);
	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: var(--white);
}
.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: 1.0rem;
	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: var(--white);
	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%;
}

.ios,
.android,
.safari,
.chrome,
.is-ios .on_pc,
.is-android .on_pc {
  display: none;
}
.is-ios .ios,
.is-ios img.ios,
.is-android .android,
.is-android img.android,
.is-safari-os .on_pc,
.is-chrome-os .on_pc ,
.is-safari-os .safari,
.is-chrome-os .chrome,
.is-safari-os img.safari,
.is-chrome-os img.chrome{
  display: block;
}
.is-ios span.ios,
.is-android span.android,
.is-safari-os span.safari,
.is-chrome-os span.chrome{
	display: inline;
}


/*====================================================================
　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 3.0rem;
	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;
}



