@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #d60148;
	--pink: #EE869A;
	--pink2: #EE5673;
	--blue: #2FA4DF;
	--purple: #8DA3C4;
	--green: #4EB93A;
	--main-color: #64C0AB;
	--sub-color: #FFDA01;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: "Zen Kaku Gothic New", 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,div,ul,ol,li,a,p,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,label,input,textarea,span{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*--ベースとなるフォントサイズ 1rem=10px想定--*/
html{
	font-size: calc(1000vw / 375);
	scroll-behavior: smooth;
}
body {
	position: relative;
	background-color: var(--main-color);
	background-image: url(../img/bg1.png), url(../img/bg2.png);
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
	color: var(--black);
	font-family: var(--main-font);
	font-size: 1.4rem;
	line-height: 1.5;
	min-height: 100dvh;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
	/* overflow-x: hidden; */
}
img {
	display: block;
	width: 100%;
}
hr{
	background: url(../img/hr.png) no-repeat top center;
	background-size: 100% auto;
	border: none;
	width: 8.5rem;
	height: 1.1rem;
	margin: 1rem auto;
}
a {
	color: #c92a19;
}
ul{
	list-style-type: none;
}
.caution li,
.indent{
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}
.error {
	background: #fff;
	border: var(--red) solid 0.2rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin: 0.5rem auto;
	max-width: 35.5rem;
	color: var(--red);
	font-weight: 700;
	font-size: 1.4rem;
	text-align: center;
}

/*--下からせり上がり--
.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);
}

.mt0{margin-top: 0!important;}
.mt05{margin-top: 0.5rem!important;}
.mt1{margin-top: 1rem!important;}
.mt15{margin-top: 1.5rem!important;}
.mt2{margin-top: 2rem!important;}
.mt3{margin-top: 3rem!important;}
.mt4{margin-top: 4rem!important;}
.mt5{margin-top: 5rem!important;}
.mb0{margin-bottom: 0!important;}
.mb05{margin-bottom: 0.5rem!important;}
.mb1{margin-bottom: 1rem!important;}
.mb15{margin-bottom: 1.5rem!important;}
.mb2{margin-bottom: 2rem!important;}
.mb3{margin-bottom: 3rem!important;}
.mb4{margin-bottom: 4rem!important;}
.mb5{margin-bottom: 5rem!important;}
.center{text-align: center!important;}
.left{text-align: left!important;}
.right{text-align: right!important;}

/*--------------見出し-----------*/
h2{
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--main-color);
}
* + h2{
	margin-top: 3rem;
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding-bottom: 9rem;
}

.block {
	padding: 2rem 1.25rem ;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	background: #fff;
	border: #70D8C0 solid 0.5rem;
	border-radius: 2rem;
	width: 33.5rem;
	margin: 0 auto 2rem;
	padding: 2rem 1.5rem 3rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--sub-color);
	border: none;
	margin: 0;
	padding: 1rem;
	color: var(--black);
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
	border-radius: 0.5rem;
}
.accordion_title::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cf";
	font-size: 1.5em;
	right: 1rem;
	font-weight: 400;
}
.accordion_title.active{
	border-radius: 0.5rem 0.5rem 0 0;
}
.accordion_title.active::after{
	transform: rotateZ(180deg);
}
.accordion_content{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem;
	transform-origin: top;
	border: var(--sub-color) solid 0.1rem;
	border-radius: 0 0 0.5rem 0.5rem;
}
.accordion:has(.active) .accordion_content{
	display: block;
}
.accordion_content.opne{
	display: block;
}

/*--------------------ボタン--------------------*/
button {
	appearance: none;
	box-sizing: border-box;
	background: none;
	border: none;
}
.button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--light-gray);
	border-radius: 0;
	width: 100%;
	max-width: 26.4rem;
	margin: 0 auto;
	min-height: 5rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: skewX(-10deg);
}
.button span{
	transform: skewX(10deg);
}
.button:disabled{
	background: var(--light-gray);
	box-shadow: none!important;
	transition: all 500ms;
}
.bt_next::after {
	position: absolute;
	background: url(../img/icon_arrow_right.svg) no-repeat center center/100% auto;
	content: "";
	width: 4.1rem;
	height: 0.8rem;
	right: -2rem;
	transform: skewX(10deg);
}
.bt_back{
	background: #9FD9F6;
	color: #0B5E87;
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
}
.bt_back::before {
	position: absolute;
	background: url(../img/icon_arrow_left.svg) no-repeat center center/100% auto;
	content: "";
	width: 4.2rem;
	height: 0.9rem;
	left: -2rem;
	transform: skewX(10deg);
}

.bt_sumi{
	background: #999;
	color: #ddd;
}
.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);
}
.blue{
	color: var(--blue);
}
.bg_red{
	background-color: var(--red);
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
}
.bg_blue{
	background-color: var(--blue);
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
}
.bg_green{
	background-color: var(--green);
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
}
.bg_yellow{
	background: var(--sub-color);
	color: var(--black);
	box-shadow: 0.2rem 0.4rem 0 #1EAB8A;
}
.bt_cookie,
.bt_submit,
.bg_pink{
	background: var(--pink);
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	background: url(../img/bg_footer.png) no-repeat bottom center/100% auto;
	width: 100%;
	height: 9rem;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 200;
}
footer.hide{
	display: none;
}
footer ul {
	list-style-type: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 0.1rem;
}
footer li {
	text-align: center;
	flex-basis: 9.3rem;
}
footer li a{
	display: block;
	text-decoration: none;
}

.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
}
.menu-btn {
	width: 100%;
	height: 9.0rem;
	z-index: 2;
}
.menu-btn span{
	position: relative;
	display: block;
	background: url(../img/footer_menu.png) no-repeat center center/100% auto;
	width: 100%;
	height: 100%;
}
#bt_menu:checked ~ .menu-btn span {
	background-image: url(../img/footer_menu_active.png);
}
#bt_menu {
	display: none;
}
.menu-content {
	position: fixed;
	background: var(--sub-color);
	width: 100%;
	height: 100%;
	padding-bottom: 9rem;
	top: 0;
	left: 0;
	transition: all 0.3s;
	transform: scale(1,0);
	transform-origin: bottom;
}
.menu-content ul {
	display: block;
	padding: 0 2rem;
	height: 100%;
	overflow-y: scroll;
}
.menu-content ul li {
	border-bottom: var(--border1);
	border-color: var(--black);
	width: 100%;
	height: auto;
}
.menu-content ul li + li{
	border-top: #fff solid 0.1rem;
}
.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(--black);
	text-decoration: none;
}
.menu-content ul li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0rem;
	font-size: 3rem;
}
#bt_menu:checked ~ .menu-content {
	transform: scale(1,1);
	top: 0;
	left: 0;
}

/*====================================================================
　規約・概要
====================================================================*/
.rule dt{
	font-size: 1.8rem;
	font-weight: 700;
}
.rule dt span{
	color: var(--main-color);
}
.rule * + dt{
	border-top: var(--sub-color) dotted 0.1rem;
	padding-top: 1.5rem;
}
.rule dd{
	margin-bottom: 0.5rem;
	padding: 0.5rem 0;
	word-break: break-all;
}
.rule dd div{
	background: #FCFBD5;
	margin: 0.5rem 0;
	padding: 0.5rem 1rem;
}
.rule li {
	padding-left: 1em;
	text-indent: -1em;
}
.rule * + ul,
.rule * + li{
	margin-top: 1rem;
}

.rule li span{
	color: var(--main-color);
	font-weight: 500;
}

/*====================================================================
　ログイン
====================================================================*/
.login{
	position: relative;
	min-height: calc(100dvh - 25rem);/*ヘッダ分をマイナスする*/
	padding: 2rem 0 3rem;
	text-align: center;
}
.login::before{
	position: absolute;
	background: #fff;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}


/*====================================================================
　言語選択
====================================================================*/
.language {
	display: flex;
	justify-content: center;
	gap: 0 2rem;
	margin: 2rem 0;
}
.language input[type=radio] {
	display: none;
}
.language input[type="radio"]:checked + label {
	background: var(--main-color);
	color: #fff;
	border: var(--main-color) solid 0.2rem;
}
.language label {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ccc;
	border-radius: 0.5rem;
	width: 12rem;
	height: 7.5rem;
	text-align: center;
	color: var(--black);
	font-size: 1.8rem;
	font-weight: 700;
	transition: 0.3s;
}



/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	margin: 0;
	width: 100%;
	text-align: center;
	/* overflow-x: hidden; */
}

/*--------------------ユーザー情報--------------------*/
.info{
	position: relative;
	background-color: var(--main-color);
	background-image: url(../img/bg_info2.png), url(../img/bg_info.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	padding: 3rem 0 1rem;
	color: #fff;
	overflow-x: hidden;
}
.info::before{
	position: absolute;
	background: url(../img/bg_info_before.svg) no-repeat center center/100% auto;
	content: "";
	width: 6.6rem;
	height: 3.4rem;
	top: 2rem;
	right: 0rem;
	animation: fly 10s linear infinite both;
	transform-origin: top left;
}
.info::after{
	position: absolute;
	background: url(../img/bg_info_after.svg) no-repeat center bottom/100% auto;
	content: "";
	width: 6.6rem;
	height: 2.2rem;
	top: 15.5rem;
	left: -0.5rem;
	animation: slide-r-l 20s -5s linear infinite both;
}
.info .name,
.info .myno {
	margin-bottom: 0.7rem;
	font-size: 2.2rem;
	font-weight: 700;
}
.info .name small{
	font-size: 1.7rem;
}
.info .myno small{
	font-size: 1.4rem;
}
.info .myno{
	display: inline-block;
	border-top: #fff dotted 0.3rem;
}
.info p {
	margin-bottom: 3rem;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
}

/*--------------------トピックス--------------------*/
.topics_top {
	position: relative;
	background: #fff;
	border: #70D8C0 solid 0.5rem;
	border-radius: 2rem;
	padding: 1rem 0.2rem 1.5rem;
	margin: 3.5rem auto 3.0rem;
	width: 33.5rem;
}
.topics_top .title{
	position: relative;
	border-bottom: var(--border1);
	padding-bottom: 0.4rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
}
.topics_top ul {
	margin: 1rem auto 0;
	padding: 0 2rem;
}
.topics_top ul li {
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--main-color);
}
.topics_top ul li a{
	color: var(--main-color);
	font-weight: 700;
}
.topics_top ul li span{
	margin-right: 1em;
	color: #aaa;
	font-size: 1.2rem;
}
.topics_top .topics_link{
	position: absolute;
	display: block;
	background: var(--main-color);
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 1rem;
	right: 1rem;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.5rem;
}



.point{
	position: relative;
	background-image: url(../img/bg_point_top.png), url(../img/bg_point_bottom.png), linear-gradient(transparent 1.9rem, #F8F7EF 1.9rem, #F8F7EF calc(100% - 1.9rem), transparent calc(100% - 1.9rem));
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 100% auto;
	width: 100%;
	margin: 0em auto ;
	padding: 0 0 4.0rem;
	z-index: 2;
}
.point::before{
	position: absolute;
	background: url(../img/illuste5.png) no-repeat center center/100% auto;
	content: "";
	width: 10.9rem;
	height: 12.0rem;
	top: 36rem;
	left: -3.6rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.point::after{
	position: absolute;
	background: url(../img/illuste3.png) no-repeat left 2.0rem center/5.7rem auto, url(../img/illuste6.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 6.8rem;
	bottom: -3.5rem;
	left: 0rem;
	z-index: 1;
}
.point .title{
	position: relative;
	font-size: 1.7rem;
	font-weight: 500;
}
.point .title::before{
	position: absolute;
	background: url(../img/illuste1.png) no-repeat center center/100% auto;
	content: "";
	width: 10.6rem;
	height: 7rem;
	top: -1.2em;
	left: -0.4rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.point .title::after{
	position: absolute;
	background: url(../img/illuste2.png) no-repeat center center/100% auto;
	content: "";
	width: 6.1rem;
	height: 4.6rem;
	top: -0.4rem;
	right: 1.3rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.point_detail{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: url(../img/bg_point_detail.png) no-repeat center center/100% auto;
	height: 10.1rem;
	width: 33.1rem;
	margin: 1rem auto;
	padding: 0 2rem;
}
.point_detail span:nth-of-type(1){
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--main-color);
}
.point_detail span:nth-of-type(2){
	margin: auto 2rem auto auto;
	font-size: 4.1rem;
	font-weight: 900;
	line-height: 1;
}
.point_detail span:nth-of-type(3){
	position: relative;
	top: 0.8rem;
	font-size: 2.3rem;
	font-weight: 900;
	line-height: 1;
}
.point_detail::before{
	position: absolute;
	background: url(../img/illuste13.png) no-repeat center center/100% auto;
	content: "";
	width: 4.5rem;
	height: 4.2rem;
	bottom: -5rem;
	left: 26.0rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.point_detail::after{
	position: absolute;
	background: url(../img/illuste4.png) no-repeat center center/100% auto;
	content: "";
	width: 6.1rem;
	height: 7.2rem;
	bottom: -13.0rem;
	right: -1.9rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.point img{
}
.point .button{
	position: relative;
	margin-top: 1.4rem;
	box-shadow: 0.2rem 0.4rem 0 var(--sub-color);
	z-index: 2;
}
.point .button::after{
	background-image: url(../img/icon_arrow_right_w.svg);
	width: 2.3rem;
	height: 0.8rem;
	right: 2.0rem;
}
.bt_loc{
	background-color: var(--main-color);
	left: -3.7rem;
	margin-bottom: 2.0rem;
}
.bt_loc:before{
	position: absolute;
	background: url(../img/icon_loc.png) no-repeat center center/100% auto;
	content: "";
	width: 3.2rem;
	height: 3.9rem;
	left: 2rem;
	z-index: 2;
	transform: skewX(10deg);
}
.bt_quiz{
	background-color: var(--blue);
	left: 3.4rem;
}
.bt_quiz:before{
	position: absolute;
	background: url(../img/icon_quiz.png) no-repeat center center/100% auto;
	content: "";
	width: 2.4rem;
	height: 3.2rem;
	left: 2.5rem;
	z-index: 2;
	transform: skewX(10deg);
}

/*--------------------賞品一覧--------------------*/
.prize_list{
	position: relative;
	background: url(../img/prizelist_before.png) no-repeat center top/100% auto;
	padding-top: 5rem;
	z-index: 1;
}
.prize_list .title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/bg_prize_title.png) no-repeat center center/ 100% auto;
	margin: auto;
	width: 23.7rem;
	height: 4.6rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--main-color);
	line-height: 1;
}
.prize_list .note{
	margin-bottom: 2rem;
	color: var(--black);
	line-height: 1.1;
}
.prize_list .note span{
	text-decoration: underline;
}
.prize_list ul{

}
.prize_list li{
	position: relative;
	background: #fff;
	border: #70D8C0 solid 0.5rem;
	border-radius: 2rem;
	width: 32.1rem;
	margin: 4rem auto 0;
	padding-bottom: 1.5rem;
}
.prize_list li:nth-of-type(3){
	padding-bottom: 3.0rem;
	margin-bottom: 2.0rem;
}
.prize_list li + li{
	margin-top: 6.6rem;
}
.prize_list li .achieve::before{
	position: absolute;
	background: url(../img/achieve.png) no-repeat center center/100% auto;
	content: "";
	width: 9.8rem;
	height: 9.8rem;
	left: -2.7rem;
	bottom: -10.0rem;
	z-index: 5;
}
.prize_list li .title{
	position: relative;
	background: none;
	width: 25rem;
	top: -2.5rem;
}
.prize_list li .title img{
	position: relative;
}
.prize_list li:nth-of-type(1) .title::before{
	position: absolute;
	background: url(../img/prize_title1_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 6.9rem;
	left: calc(50% - 37.5rem / 2);
	bottom: 0;
}
.prize_list li:nth-of-type(2) .title::before{
	position: absolute;
	background: url(../img/prize_title2_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 9.5rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -1.8rem;
}
.prize_list li:nth-of-type(3) .title::before{
	position: absolute;
	background: url(../img/prize_title3_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 9.5rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -1.8rem;
}
.prize_list li .prize_name{
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--pink2);
}
.prize_img{
	position: relative;
}
.prize_img img{
	position: absolute;
	width: 37.5rem;
	left: calc(50% - 37.5rem / 2);
}
.prize1{
	height: 20.5rem;
	top: -1.1rem;
}
.prize2{
	height: 20.0rem;
	top: -1.8rem;
}
.prize3{
	height: 22.9rem;
	top: -1.8rem;
	margin-bottom: -1.5rem;
}
.prize4{
	height: 25.0rem;
	top: -1.8rem;
	margin-bottom: -1.5rem;
}
.prize5{
	height: 20.4rem;
}
.prize6{
	height: 20.6rem;
}
.prize7{
	height: 21.9rem;
	margin-bottom: -1.5rem;
}
.prize8{
	height: 24.7rem;
	margin-bottom: -1.5rem;
}
.prize9{
	height: 20.2rem;
	margin-bottom: -3.0rem;
}
.prize_img .result{
	position: absolute;
	content: "";
	width: 7.2rem;
	height: 6.9rem;
	right: -2rem;
	bottom: 0;
}
.prize_img .result img{
	position: relative;
	width: 100%;
	left: auto!important;
	top: auto!important;
}
.prize_img .result span{
	font-size: 2.4rem;
}
.prize_detail{
	position: relative;
	margin: 0 auto 2.0rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.2;
}
.prize_detail span{
	font-size: 2.8rem;
}
.prize_detail small{
	font-size: 1.4rem;
	line-height: 1;
}
.prize_list p{
	font-weight: 700;
	color: #fff;
}


.prize_list li:nth-of-type(1):before{
	position: absolute;
	background: url(../img/prizename1_before.png) no-repeat center center/100% auto;
	content: "";
	width: 12.1rem;
	height: 7.8rem;
	top: 4.2rem;
	left: -3.2rem;
}
.prize_list li:nth-of-type(1)::after{
	position: absolute;
	background: url(../img/particle2.png) no-repeat center center/100% auto;
	content: "";
	width: 3.5rem;
	height: 2.8rem;
	right: -1.5rem;
	bottom: -5.0rem;
}

.prize_list li:nth-of-type(2):before{
	position: absolute;
	background: url(../img/illuste12.png) no-repeat center center/100% auto;
	content: "";
	width: 12.7rem;
	height: 5.9rem;
	bottom: -4.0rem;
	left: -1.5rem;
}
.prize_list li:nth-of-type(2)::after{
	position: absolute;
	background: url(../img/illuste14.png) no-repeat center center/100% auto;
	content: "";
	width: 9.3rem;
	height: 5.5rem;
	bottom: -1.2rem;
	right: -2.5rem;
}

.prize_list li:nth-of-type(3):before{
	position: absolute;
	background: url(../img/particle3.png) no-repeat center center/100% auto;
	content: "";
	width: 35.2rem;
	height: 7.4rem;
	top: -9.4rem;
	left: calc(50% - 35.2rem / 2);
}
.prize_list li:nth-of-type(3)::after{
	position: absolute;
	background: url(../img/particle4.png) no-repeat center center/100% auto;
	content: "";
	width: 33.3rem;
	height: 4.0rem;
	bottom: -5.1rem;
	left: calc(50% - 33.3rem / 2);
}
.deco:before{
	position: absolute;
	background: url(../img/illuste1.png) no-repeat center center/100% auto;
	content: "";
	width: 8rem;
	height: 5.0rem;
	top: -0.8rem;
	left: -2.4rem;
	z-index: 2;
	animation: yurayura 5s ease-in-out infinite both;
}
.deco::after{
	position: absolute;
	background: url(../img/illuste2.png) no-repeat center center/100% auto;
	content: "";
	width: 6.0rem;
	height: 4.2rem;
	top: -0.8rem;
	right: -2.4rem;
	z-index: 2;
	animation: yurayura 5s ease-in-out infinite both;
}

.prize2:before{
	position: absolute;
	background: url(../img/illuste16.png) no-repeat center center/100% auto;
	content: "";
	width: 7.7rem;
	height: 8.5rem;
	top: -10.7rem;
	left: -3.4rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize3::before{
	position: absolute;
	background: url(../img/illuste15.png) no-repeat center center/cover;
	content: "";
	width: 6.9rem;
	height: 8.2rem;
	top: -6.9rem;
	left: 26.2rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize4:before{
	position: absolute;
	background: url(../img/illuste10.png) no-repeat center center/100% auto;
	content: "";
	width: 6.9rem;
	height: 5.4rem;
	top: -8.1rem;
	left: -1.5rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize5:before{
	position: absolute;
	background: url(../img/illuste11.png) no-repeat center center/100% auto;
	content: "";
	width: 7.6rem;
	height: 6.9rem;
	bottom: -1.7rem;
	left: -1.9rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize6:before{
	position: absolute;
	background: url(../img/illuste7.png) no-repeat center center/100% auto;
	content: "";
	width: 5.9rem;
	height: 3.8rem;
	bottom: -2.0rem;
	left: -0.9rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize6::after{
	position: absolute;
	background: url(../img/illuste13.png) no-repeat center center/100% auto;
	content: "";
	width: 4.6rem;
	height: 4.2rem;
	bottom: -17.0rem;
	right: -2.9rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize7:before{
	position: absolute;
	background: url(../img/illuste9.png) no-repeat center center/100% auto;
	content: "";
	width: 6.7rem;
	height: 6.9rem;
	top: -2.1rem;
	left: -1.9rem;
	z-index: 2;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize8:before{
	position: absolute;
	background: url(../img/illuste1.png) no-repeat center center/100% auto;
	content: "";
	width: 10.6rem;
	height: 7.0rem;
	top: 0.8rem;
	left: -1.1rem;
	z-index: 2;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize9:before{
	position: absolute;
	background: url(../img/illuste9-2.png) no-repeat center center/100% auto;
	content: "";
	width: 5.7rem;
	height: 5.8rem;
	top: -2.6rem;
	left: 27.7rem;
	z-index: 2;
	animation: yurayura 5s ease-in-out infinite both;
}



.prize_list li:nth-of-type(3) .rishiriyama::after{
	position: absolute;
	background: url(../img/illuste13.png) no-repeat center center/100% auto;
	content: "";
	width: 7.3rem;
	height: 6.6rem;
	top: -7.75rem;
	right: -4rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize_list li:nth-of-type(3) .kumagera:before{
	position: absolute;
	background: url(../img/illuste14.png) no-repeat center center/100% auto;
	content: "";
	width: 8.4rem;
	height: 5rem;
	top: -2.75rem;
	left: -3rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize_list li:nth-of-type(3) .kumagera::after{
	position: absolute;
	background: url(../img/illuste15.png) no-repeat center center/100% auto;
	content: "";
	width: 9.3rem;
	height: 8.3rem;
	top: -8.75rem;
	right: -4.5rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.prize_list li:nth-of-type(3) .hinageshi:before{
	position: absolute;
	background: url(../img/illuste16.png) no-repeat center center/100% auto;
	content: "";
	width: 9.6rem;
	height: 11.9rem;
	top: -10.75rem;
	left: -4.5rem;
	animation: yurayura 5s ease-in-out infinite both;
}
.achieved::before{
	position: absolute;
	background: url(../img/achieve.svg) no-repeat center center/100% auto;
	content: "";
	width: 9rem;
	height: 9rem;
	top: -2rem;
	left: -2rem;
}

/*--------------------参加時のご注意--------------------*/
.mypage .accordion{
	text-align: left;
	margin: 2rem auto;
    max-width: 31.5rem;
}

/*====================================================================
　クイズ一覧
====================================================================*/
.quiz_list p{
	font-weight: bold;
	margin: 1.8rem auto;
}
.quiz_list p span{
	color: var(--pink2);
	font-size: 1.2em;
}
.quiz_list li{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: var(--sub-color) dotted 2px;
}
.quiz_list li a,
.quiz_list li.correct,
.quiz_list li.incorrect{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.25rem 4rem 1.25rem 0;
	min-height: 6.9rem;
	width: 100%;
	color: var(--black);
	font-size: 1.4rem;
	font-weight: bold;
	text-align: left;
	text-decoration: none;
}
.quiz_list li.correct,
.quiz_list li.incorrect{
	color: var(--middle-gray);
}
.quiz_list li a:after{
	position: absolute;
    font-family: var(--ms);
    content: "\e5cc";
    font-weight: 400;
    right: 0rem;
	font-size: 3rem;
	color: var(--blue);
}
.correct:after{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--pink) solid 0.3rem;
	border-radius: 50%;
	content: "正";
	width: 3rem;
	height: 3rem;
	right: 0;
	margin: auto;
	font-size: 2.8rem;
	color: var(--pink);
}
.incorrect:after{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--middle-gray) solid 0.3rem;
	border-radius: 50%;
	content: "誤";
	width: 3rem;
	height: 3rem;
	right: 0;
	margin: auto;
	font-size: 2.8rem;
	color: var(--middle-gray);
}


/*====================================================================
　クイズ
====================================================================*/
.quiz{
	background: var(--main-color);
}
.question_area{
	position: relative;
	background: #F8F7EF url(../img/bg_quiz.png) no-repeat top center/100% auto;
	padding: 2.8rem 0 0;
}
.asking{
	position: relative;
	background: #fff;
	border: var(--sub-color) solid 0.5rem;
	border-radius: 2rem;
	padding: 2.5rem 1.5rem 2rem;
	width: 32.1rem;
	margin: 0 auto;
	font-weight: 700;
	z-index: 2;
}
.asking::before{
	position: absolute;
	background: url(../img/question.png) no-repeat center center/100% auto;
	content: "";
	width: 9.4rem;
	height: 4.7rem;
	top: -2rem;
	left: -1.3rem;
}
.asking::after{
	position: absolute;
	background: url(../img/question_after.svg) no-repeat center center/100% auto;
	content: "";
	width: 2.9rem;
	height: 3.9rem;
	top: -2rem;
	right: -1.5rem;
}
.quiz .inner{
	position: relative;
	background: url(../img/bg_quiz_inner.png) no-repeat top center/100% auto;
	padding: 11.1rem 0 5rem;
}
.quiz .inner::before{
	position: absolute;
	background: url(../img/quiz_inner_before.png) no-repeat right center/100% auto;
	content: "";
	width: 17.1rem;
	height: 28.7rem;
	right: 0;
	top: -5.2rem;
}

.quiz input[type="radio"]{
	display: none;
}
.quiz label{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background :#fff;
	border: #fff solid 0.3rem;
	width: 27.6rem;
	min-height: 5rem;
	line-height: 1.2;
	margin: 0 auto 1.7rem;
        padding: 0;
	color: #000;
	font-size: 1.7rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: .1s;
}
.quiz input[type="radio"]:checked + label {
	background :var(--black);
	color: #fff;
}
.quiz input[type="radio"]:checked + label::before{
	position: absolute;
	background: url(../img/answer_before.png) no-repeat center center/100% auto;
	content: "";
	width: 5rem;
	height: 5rem;
	left: -3.7rem;
}
.quiz input[type="radio"]:checked + label::after{
	position: absolute;
	background: url(../img/answer_after.svg) no-repeat center center/100% auto;
	content: "";
	width: 5.7rem;
	height: 4.9rem;
	top: -1.75rem;
	right: -3rem;
}
.quiz button[type="submit"]{
	margin: 0 auto 2rem;
}
.quiz form p{
	color: var(--black);
	text-align: center;
	font-size: 1.5rem;
}
.quiz input[type="radio"]:checked ~ .button::after{
	position: absolute;
	background: url(../img/icon_arrow_right.svg) no-repeat center center/100% auto;
	content: "";
	width: 4.2rem;
	height: 0.9rem;
	right: -2rem;
	transform: skewX(10deg);
}
.quiz a{
	margin: 1rem auto 0;
}

.hazure h2{
	color: #fff;
	font-size: 5rem;
	animation: bounce-in-top 0.8s 0.5s both;
}

/*====================================================================
　ポイント取得
====================================================================*/
.getpoint{
	position: relative;
	background-color: #F8F7EF;
	background-image: url(../img/bg_getpoint_top.png), url(../img/bg_getpoint_bottom.png);
	background-repeat: no-repeat;
	background-position: center top, center bottom;
	background-size: 100% auto;
	min-height: 100dvh;
	padding: 1.9rem 0 8.4rem;
	text-align: center;
	overflow-x: hidden;
}
.getpoint .pointget{
	position: relative;
	background: url(../img/bg_pointget.png) no-repeat center center/100% auto;
	animation: fade-in 0.8s 0.5s linear both;
}
.getpoint .pointget img:nth-of-type(1){
	position: relative;
	animation: bounce-in-bck 0.8s 0.5s both;
}
.getpoint .pointget img:nth-of-type(2){
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	animation: bounce-in-bck 0.8s 0.8s both;
}
.getpoint .stamp{
	width: 25.3rem;
	margin: 0 auto 2.0rem;
	animation: bounce-in-bottom 0.8s 0.2s both;
}
.getpoint .spot-name{
	color: var(--main-color);
	margin: 2.0rem auto 1.0rem;
	padding: 0 2.0rem;
	font-size: 2.6rem;
	font-weight: 700;
	animation: fade-in 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
}
.getpoint .correct-img{
	position: relative;
	width: 100%;
	margin: 0rem auto 0;
	animation: bounce-in-bck 0.8s 0.8s both;
}
.getpoint .get_point{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #000;
	animation: fade-in 2s 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.bonus{
	font-size: 2.2rem;
}
.commentary{
	position: relative;
	background: #fff;
	border: var(--sub-color) solid 0.5rem;
	border-radius: 2rem;
	padding: 2rem 1.5rem 3rem;
	width: 31.4rem;
	margin: 3.0rem auto;
	padding: 1.8rem;
	animation: fade-in 2s 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.commentary::before{
	position: absolute;
	background: url(../img/commentary_before.svg) no-repeat center center/100% auto;
	content: "";
	width: 5rem;
	height: 5rem;
	left: -3rem;
	top: -3rem;
}
.commentary::after{
	position: absolute;
	background: url(../img/explanation.svg) no-repeat center center/100% auto;
	content: "";
	width: 12.8rem;
	height: 3.6rem;
	left: 0;
	right: 0;
	top: -2rem;
	margin: auto;
}
.commentary p{
	font-weight: 500;
	text-align: left;
	margin: 0;
}
.congrats{
	position: fixed;
	background: color-mix(in srgb, var(--main-color) 80%, transparent) url(../img/bg_congrats.png) repeat left top/3.3rem auto;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding-top: 10.9rem;
	z-index: 500;
	animation: fade-in 2s 3.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.congrats .inner{
	position: relative;
	background: url(../img/bg_congrats_inner.png) no-repeat center center/100% auto;
	height: 34.0rem;
	padding-top: 5.0rem;
}
.getpoint .close{
	margin: 9.7rem auto 0;
	animation: fade-in 2s 3.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/*====================================================================
　全体マップ画面
====================================================================*/
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 li + li {
	border-top: var(--border1);
}
.area-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 3rem 1rem 1rem;
	width: 100%;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--black);
	text-decoration: none;
}
.area-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	top: 0.3rem;
	right: 0rem;
  font-size: 3rem;
	color: var(--main-color);
}



/*====================================================================
　対象地点一覧
====================================================================*/
.spot-list li {
	position: relative;
	display: flex;
	align-items: center;
}
.spot-list li + li {
	border-top: var(--border1);
}
.spot-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1.5rem 2.5rem 1.5rem 3.5rem;
	width: 100%;
	color: var(--black);
	font-weight: 700;
	font-size: 1.6rem;
	text-decoration: none;
}
.spot-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: -1.0rem;
	font-size: 3rem;
	color: var(--main-color);
}
.spot-list li a p{
	max-width: 19rem;
}
.spot-list li a span{
	margin-left: auto;
	font-size: 1.4rem;
	color: var(--pink2);
}
.sumi::before{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--pink2) solid 0.3rem;
	border-radius: 50%;
	content: "済";
	width: 2.2rem;
	height: 2.2rem;
	left: 0;
	font-size: 1.4em;
	font-weight: 900;
	color: var(--pink2);
	line-height: 1;
}
.QR::before{
	position: absolute;
	font-family: var(--ms);
	content: "\ef6b";
	left: 0.25rem;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--main-color);
}
.GPS::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e55e";
	left: 0;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--main-color);
}
.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);
}


/*====================================================================
　地点詳細画面
====================================================================*/
.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 h2{
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}
.spot h2 small{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.0rem;
	font-size: 1.4rem;
}
.spot h2 small::before,
.spot h2 small::after{
	position: relative;
	background: var(--main-color);
	content: "";
	width: 3.0rem;
	height: 0.1rem;
}
.spot .obtainable{
	text-align: center;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--blue);
	line-height: 1;
}
.spot .obtainable small{
	font-size: 2.0rem;
}
.spot-img {
	position: relative;
	margin: 2rem auto;
}

.spot-detail {
	border: 0.1rem solid #ccc;
	border-collapse: collapse;
	margin: 2rem 0;
	width: 100%;
	text-align: left;
}
.spot-detail tr:nth-of-type(even){
	background: rgb(247, 247, 247);
}

.spot-detail th,
.spot-detail td {
	padding: 1rem 0.5rem;
	word-break: break-all;
}
.spot-detail th {
	width: 5em;
	vertical-align: top;
	text-align: center;
}
.spot-detail td{
	line-height: 1.2;
}
.spot-detail td span{
	display: inline-block;
	margin-left: 0.5em;
	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);
}
/*====================================================================
　トピックス設定
====================================================================*/
.topics_list ul{
	margin: 0 auto;
}
.topics_list li{
	position: relative;
}
.topics_list li + li{
	border-top: var(--border1);
	padding-top: 1.5rem;
}
.topics_list li a{
	position: relative;
	display: block;
	text-align: left;
	padding: 0rem 3rem 1.5rem 0;
	text-decoration: none;
	color: var(--black);
}
.topics_list li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-weight: 400;
	right: 0;
	top: calc(50% - 1rem);
	color: var(--main-color);
	font-size: 2.3rem;
}
.topics_list h3,
.topics_datail h3{
	margin-bottom: 0.5rem;
	color: var(--main-color);
}
.topics_list span{
	color: #aaa;
}
.topics_list p{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.topics_datail div.date{
	color: #aaa;
	text-align: left;
}
.topics_datail div.note{
	text-align: left;
	margin-bottom: 2rem;
}


/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto;
}
.form dt {
	display: flex;
	align-items: baseline;
	background: var(--pale);
	margin: 1em 0 0;
	padding: 0.25em 0;
	border-bottom: 0.1rem dotted #aaa;
	font-weight: 700;
}
.form dt small{
	margin-left: 0.5rem;
	font-size: 1.0rem;
	word-break: break-all;
}
.form * + dt{
	margin-top: 2rem;
}
.form dd {
	margin-top: 0.5rem;
}
.form dd.flex,
.form dd.flex50{
	display: flex;
	flex-wrap: wrap;
}
.form dd.flex label {
	margin-right: 2rem;
}
.form dd.flex50 label {
	width: 50%;
}
.form dd label {
	display: flex;
	/* align-items: center; */
	margin-bottom: 0.5rem;
}
.required {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: var(--red) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.2rem 0;
	margin-left: 1rem;
	min-width: 3.6rem;
	max-height: 2.1rem;
	color: var(--red);
	font-size: 1.2rem;
	line-height: 1;
	word-break: keep-all;
}
.prize-name {
	margin: 2rem auto;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	color: var(--pink2);
}
.form .caution{
	margin-top: 2rem;
}
.form .caution li{
	font-size: 1.2rem;
}
.form_comp{
	text-align: center;
}

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-top: 0.1rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="radio"]:checked {
	background: #666;
	border-color: #4c4c4c;
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
input[type="checkbox"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="checkbox"]:checked {
	background: #666;
	border-color: #4c4c4c;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: #FFFFFF;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(6% 70%, 15% 54%, 43% 70%, 81% 8%, 97% 19%, 50% 95%);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
textarea {
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 1.6rem;
	width: 100%;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"].q10{
	width: 5em;
	margin: 0 0.25rem;
}

input:focus,
select:focus,
textarea:focus{
	box-sizing: border-box;
	outline: var(--blue) solid 0.2rem;
}
input[type="date"]:focus{
	outline: none
}
input[type="date"]{
  -webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	font-size: 1.6rem;
	font-family: var(--main-font);
}
input[type="date"]::-webkit-calendar-picker-indicator{
  position: absolute;
  width: 3rem;
  height: 3rem;
  right: -3.5rem;
	opacity: 0;
}
label:has(input[type="date"]){
	position: relative;
	display: inline-flex;
	width: fit-content;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.1rem 0.5rem;
}
label:has(input[type="date"]:focus){
	outline: var(--blue) solid 0.2rem;
}
label:has(input[type="date"])::before{
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
  background-color: var(--main-color);
  border-radius: 0.5rem;
  width: 3rem;
  height: 3rem;
	right: -3.5rem;
	font-family: var(--ms);
  content: "\e935";
	font-size: 2.0rem;
	font-weight: 300;
	color: #fff;
}
select {
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	color: var(--black);
	padding: 0.5rem;
	max-width: 100%;
	font-size: 1.4em;
}
textarea {
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 100%;
}
textarea[disabled] {
	border-color: #ddd;
}
::placeholder {
	color: #999;
	font-size: 0.9em;
}
input#textPassword{
	border: none;
}
.textPassword{
	position: relative;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	overflow: hidden;
}
.textPassword:has(input:focus){
	outline: var(--blue) solid 0.2rem;
}
#buttonEye {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 10%;
	right: 0;
	top: 0;
}
#buttonEye.visibility::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f4";
}
#buttonEye.visibility_off::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f5";
}
.other_checked{
	display: none;
}
.form dd:has(.other:checked) .other_checked{
	display: block;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention strong{
	font-size: 1.6rem;
    color: var(--pink);
}

.join_attention a{
	font-weight: 700;
    color: var(--pink);
}

.join_attention div{
	background: #FCFBD5;
	margin: 2rem 0 1rem;
	padding: 0.5rem;
	font-size: 1.3rem;
}
.join_attention li{
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 500;
	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;
	height: 70%;
	padding: 2rem;
	margin-bottom: 2rem;
	overflow-y: scroll;
}
.attention dl{
	margin: 0 0 2rem;
}
.attention dt{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 1rem;
}
.attention dt span.material-symbols{
	margin: 0 1rem;
	color: #c92a19;
	font-variation-settings: 'FILL' 1;
	font-size: 2rem;
}
.attention dd {
	padding: 0.5rem 0;
	text-align: left;
}
.attention ul li{
	padding: 0.5rem 1em;
	text-indent: -1em;
}
.attention ul li img{
	width: 15rem;
	margin: 0 auto;
}



/*====================================================================
　FAQ
====================================================================*/
.faq .title{
	background: #cc0000;
	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;
	font-weight: bold;
}
.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: #006bb6;
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
}
.faq .midashi{
	background: var(--red);
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
	font-weight: 700;
}

/*====================================================================
　自動翻訳の設定方法
====================================================================*/
.translate h3.title {
  background-color: #006298;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.translate img {
  display: block;
  margin: 0.5rem auto;
}
.translate ol.numb {
  list-style: none;
  counter-reset: number;
}
.translate ol.numb li {
  position: relative;
  padding-left: 2rem;
}
.translate ol.numb li:not(:last-of-type) {
  border-bottom: var(--dark-gray) dotted 0.2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.translate ol.numb li::before {
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
  background: #006298;
  counter-increment: number;
  content: counter(number);
  top: 0.2em;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}
.translate ol.numb li div.box {
  margin: 0.5rem 0.5rem 0.5rem -1.5rem;
}
.translate ol.numb li img.inline {
  display: inline;
  width: 2em;
  margin: 0 0 -0.5rem;
}
.translate .siege{
	border: var(--black) solid 0.1rem;
	padding: 0.5rem;
}
.translate form{
	margin: 0 auto 2rem;
	text-align: center;
}
.eng{
	display: none;
}


/*====================================================================
　PCでアクセス時のエラー表示
====================================================================*/
@media screen and (min-width: 481px){
	html{
		font-size: 10px;
	}
	body{
		max-width: 750px;
		margin: auto;
	}
	main {
		max-width: 37.5rem;
		margin: auto;
	}
}
.view_pc .error{
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
}
.view_pc img{
	width: 150px;
	margin: 3rem auto;
}