@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #FF0000;
	--pink: #FA70A1;
	--orange: #E67749;
	--blue: #0C96DC;
	--green: #38ACB5;
	--pale: #f1ede0;
	--main-color: #005D8C;
	--sub-color: #38ACB5;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: 'Roboto', 'Noto Sans JP', sans-serif;
	/*--Material Symbols設定 案件ごとに設定--*/
	--ms: 'Material Symbols Sharp';
	/*--個別にMaterial Symbolsを設定する場合--*/
	--mso: 'Material Symbols Outlined';
	--msr: 'Material Symbols Rounded';
	--mss: 'Material Symbols Sharp';
}
.material-symbols {
	font-family: var(--ms);
}
/*====================================================================
　全体設定
====================================================================*/
html,body,header,footer,main,section,nav,div,ul,ol,li,a,p,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,label,input,textarea,span{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*--ベースとなるフォントサイズ 1rem=10px想定--*/
html{
	font-size: calc(1000vw / 375);
	scroll-behavior: smooth;
}
body {
	position: relative;
	background-color: #0C96DC;
	min-height: 100dvh;
	color: var(--black);
	font-family: var(--main-font);
	font-size: 1.4rem;
	line-height: 1.5;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
body:has(.mypage){
	background: #fff;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
	background-image: url(../img/bg_prize_top.png), linear-gradient(#fff 3.5rem, #0C96DC 3.5rem);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	overflow-x: hidden;
}
body:has(.mypage) main{
	background: none;
}
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{
	transform : translate(0, 5rem);
	transition : all 500ms;
}
.scrollin {
	transform : translate(0, 0);
} */

.mt0{margin-top: 0!important;}
.mt05{margin-top: 0.5rem!important;}
.mt1{margin-top: 1rem!important;}
.mt15{margin-top: 1.5rem!important;}
.mt2{margin-top: 2rem!important;}
.mt3{margin-top: 3rem!important;}
.mt4{margin-top: 4rem!important;}
.mt5{margin-top: 5rem!important;}
.mb0{margin-bottom: 0!important;}
.mb05{margin-bottom: 0.5rem!important;}
.mb1{margin-bottom: 1rem!important;}
.mb15{margin-bottom: 1.5rem!important;}
.mb2{margin-bottom: 2rem!important;}
.mb3{margin-bottom: 3rem!important;}
.mb4{margin-bottom: 4rem!important;}
.mb5{margin-bottom: 5rem!important;}
.center{text-align: center!important;}
.left{text-align: left!important;}
.right{text-align: right!important;}
.w100{width: 100%;}

/*--------------見出し-----------*/
h2{
	margin: 0 auto 2rem;
	text-align: center;
	color: var(--blue);
}
/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
	padding-bottom: 9rem;
}

.block {
	padding: 5rem 0rem 2rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	position: relative;
	background-image: url(../img/bg_prize_detail_top.png), url(../img/bg_prize_detail_bottom.png), linear-gradient(#fff calc(100% - 0.8rem), transparent calc(100% - 0.8rem));
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 100% auto;
	width: 34.2rem;
	width: 33.5rem;
	padding: 3rem 1.5rem 4rem;
	margin: 0 auto 2rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 2rem auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
	border: none;
	margin: 0;
	padding: 1rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.accordion_title::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5c5";
	font-size: 1.5em;
	right: 1rem;
}
.accordion_title.active::after{
	transform: rotateZ(180deg);
}
.accordion_content + .accordion_title{
	margin-top: 0.1rem;
}
.accordion_content{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.accordion .accordion_title.active + .accordion_content{
	display: block;
}
.accordion_content.opne{
	display: block;
}

/*--------------------ボタン--------------------*/
button {
	appearance: none;
	background: none;
	border: none;
}
.button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--light-gray);
	border-radius: 10vw;
	width: 100%;
	max-width: 22.9rem;
	margin: auto;
	min-height: 4.2rem;
	padding: 0.4rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
}
.button span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0.5rem 0;
}
.button:disabled{
	background-color: var(--light-gray);
}
.bt_next::after {
	position: absolute;
	background: url(../img/icon_arrow.png) no-repeat center center/100% auto;
	content: "";
	width: 2.4rem;
	height: 1.5rem;
	right: 1.5rem;
}
.bt_back{
	background-color: #fff;
	border: var(--main-color) solid 0.2rem;
	max-width: 16.0rem;
	min-height: 3.2rem;
	color: var(--main-color);
	font-size: 1.4rem;
	font-weight: 500;
}
/* .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;
}
.bt_outside{
	background-color: #fff;
	border: var(--main-color) solid 0.4rem;
	color: var(--main-color);
}
.bt_outside::after {
	position: absolute;
	background: url(../img/icon_outside.png) no-repeat center center/100% auto;
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	right: 3.0em;
}
.bt_copy::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e14d";
	font-weight: 200;
	font-size: 2.5rem;
	right: 1rem;
}
.bt_checkin::after {
	position: relative;
	font-family: var(--ms);
	content: "\e569";
	font-variation-settings: 'FILL' 1;
	font-weight: 500;
	font-size: 2.0rem;
	margin-left: 1rem;
}
.bt-line{
	display: inline-flex;
	background: #06c755;
	border-radius: 1.0rem;
	width: auto;
	max-width: none;
	padding: 0 0 0 5.4rem;
	font-family: var(--main-font);
	font-weight: 500;
	line-height: 1;
	box-shadow: none;
}
.bt-line::before{
	background: url(../img/icon_line.svg) no-repeat center center/100% auto;
	content: "";
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 0.7rem;
	transform: translateY(-50%);
}
.bt-line div {
	width:100%;
	display: block;
  border-left: 1px rgba(0,0,0,0.08) solid;
	padding: 2.0rem 4rem;
}

.btn{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	background: url(../img/bg_top_btn.png) no-repeat center center/11.8rem auto;
	border-radius: 50%;
	width: 13.0rem;
	height: 13.0rem;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.orange {
	color: var(--orange);
}
.pink {
	color: var(--pink);
}
.blue {
	color: var(--blue);
}
.green {
	color: var(--green);
}
.bt_cookie,
.bt_submit{
	background-color: var(--pink);
	box-shadow: 0 0.6rem 0 #C94574;
}
.bg_red{
	background-color: var(--red);
}
.bg_blue{
	background-color: var(--blue);
}
.bg_green{
	background-color: var(--green);
	box-shadow: 0 0.8rem 0 #005D8C;
}
.bg_orange{
	background-color: var(--orange);
	box-shadow: 0 0.8rem 0 #BA3600;
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: -webkit-fixed;
	position: fixed;
	background: var(--main-color);
	width: 100%;
	height: 7.6rem;
	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;
	width: 37.5rem;
	left: calc(50% - (37.5rem / 2));
}
footer ul li {
	text-align: center;
	flex-basis: calc(100% / 4);
}
footer ul li a{
	display: block;
	font-size: 1.3rem;
	text-decoration: none;
}


.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.menu-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/footer_menu.png) no-repeat center center/100% auto;
	height: 100%;
	width: 100%;
	z-index: 2;
}
.menubtn,
.menubtn:before,
.menubtn:after {
	position: absolute;
	display: block;
	background: url(../img/menu_line_middle.png) no-repeat center center/100% auto;
	height: 0.4rem;
	width: 3.6rem;
	content: '';
	transition: all 500ms;
	transition-timing-function: ease-in-out;
}
.menubtn{
	top: 40%;
}
.menubtn:before {
	background-image: url(../img/menu_line_top.png);
	bottom: 0.8rem;
}
.menubtn:after {
	background-image: url(../img/menu_line_bottom.png);
	top: 0.8rem;
}
.menutext{
	position: absolute;
	display: block;
	bottom: 0.5rem;
	font-size: 1.3rem;
	color: #fff;
}

#bt_menu:checked ~ .menu-btn span {
	background: none;
	transform: rotate(180deg);
}
#bt_menu:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(135deg);
}
#bt_menu:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(225deg);
}
#bt_menu:checked ~ .menu-btn span.menutext {
	transform: none;
}
#bt_menu {
	display: none;
}

.menu-content {
	position: fixed;
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 15" width="100%" height="15" preserveAspectRatio="none"><path d="M 0 10 Q 10.25 10 20.5 5 Q 41 -5 61.5 5 Q 71.75 10 82 10 Q 92.25 10 102.5 5 Q 123 -5 143.5 5 Q 153.75 10 164 10 Q 174.25 10 184.5 5 Q 205 -5 225.5 5 Q 235.75 10 246 10 Q 256.25 10 266.5 5 Q 287 -5 307.5 5 Q 317.75 10 328 10 Q 338.25 10 348.5 5 Q 369 -5 389.5 5 Q 399.75 10 410 10 Q 420.25 10 430.5 5 Q 451 -5 471.5 5 Q 481.75 10 492 10 L 410 15 L 0 15 Z" fill="%23005D8C"></path></svg>'), linear-gradient(transparent 5.6rem, var(--main-color) 5.6rem) ;
	background-repeat: no-repeat;
	background-position: center top 5.0rem, center center;
	background-size: 41.0rem 0.9rem, 100% auto;
	width: 100%;
	height: 100%;
	padding: 6.0rem 0 7.8rem;
	bottom: 0;
	left: 0;
	-webkit-backdrop-filter: blur(0.5rem) brightness(1.1);
	backdrop-filter: blur(0.5rem) brightness(1.1);
	opacity: 0;
	transition: all 0.3s;
	transform: translateY(100dvh);
	transform-origin: bottom;
	transition-timing-function: linear(0, 0.30, 0.50, 0.65, 1);
}
.menu-content ul {
	display: block;
	padding: 0 2rem;
	height: calc(100% - 9rem);
	overflow-y: auto;
}
.menu-content ul li {
	border-bottom: #fff 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.6rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.menu-content ul li a::after {
	position: absolute;
	background: url(../img/icon_arrow.png) no-repeat center center/100% auto;
	content: "";
	width: 2.4rem;
	height: 1.5rem;
	right: 1rem;
}
#bt_menu:checked ~ .menu-content {
	opacity: 1;
	transform: translateY(0);
}
body:has(#bt_menu:checked){
	overflow: hidden;
}
/*====================================================================
　規約・概要
====================================================================*/
.rule {
}
.rule dt{
	font-size: 1.6rem;
	font-weight: 700;
}
.rule dt span{
	color: var(--main-color);
}
.rule * + dt{
	border-top: var(--main-color) dotted 0.1rem;
	padding-top: 1.5rem;
}
.rule dd{
	margin-bottom: 1.5rem;
	padding: 1rem 0 0;
	word-break: break-word;
}
.rule dd div{
	background: var(--pale);
	margin: 0.5rem 0;
	padding: 1rem;
	font-size: 1.3rem;
}
.rule li {
	padding-left: 1em;
	text-indent: -1em;
}
.rule li + li{
	margin-top: 1rem;
}

/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
	text-align: center;
}

.mypage .title {
	font-weight: 700;
	font-size: 1.8rem;
}
.mypage .explain{
	margin: 2rem auto;
}
/*--------------------ユーザー情報--------------------*/
.info {
	position: relative;
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 15" width="100%" height="15" preserveAspectRatio="none"><path d="M 0 10 Q 10.25 10 20.5 5 Q 41 -5 61.5 5 Q 71.75 10 82 10 Q 92.25 10 102.5 5 Q 123 -5 143.5 5 Q 153.75 10 164 10 Q 174.25 10 184.5 5 Q 205 -5 225.5 5 Q 235.75 10 246 10 Q 256.25 10 266.5 5 Q 287 -5 307.5 5 Q 317.75 10 328 10 Q 338.25 10 348.5 5 Q 369 -5 389.5 5 Q 399.75 10 410 10 Q 420.25 10 430.5 5 Q 451 -5 471.5 5 Q 481.75 10 492 10 L 410 15 L 0 15 Z" fill="%23005D8C"></path></svg>'), url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 15" width="100%" height="15" preserveAspectRatio="none"><path d="M 0 5 Q 10.25 5 20.5 10 Q 41 20 61.5 10 Q 71.75 5 82 5 Q 92.25 5 102.5 10 Q 123 20 143.5 10 Q 153.75 5 164 5 Q 174.25 5 184.5 10 Q 205 20 225.5 10 Q 235.75 5 246 5 Q 256.25 5 266.5 10 Q 287 20 307.5 10 Q 317.75 5 328 5 Q 338.25 5 348.5 10 Q 369 20 389.5 10 Q 399.75 5 410 5 Q 420.25 5 430.5 10 Q 451 20 471.5 10 Q 481.75 5 492 5 L 410 0 L 0 0 Z" fill="%23005D8C"></path></svg>'), linear-gradient(transparent 0.6rem, var(--main-color) 0.6rem, var(--main-color) calc(100% - 0.6rem), transparent calc(100% - 0.6rem)) ;
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 41.0rem 0.9rem, 41.0rem 0.9rem, 100% auto;
	padding: 2.5rem 1.0rem 2.5rem 10.8rem;
	z-index: 2;
}
.info .name {
	border-bottom: #fff solid 0.1rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.info .name small{
	font-size: 1.5rem;
}
.info .myno {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: url(../img/bg_myno.png) no-repeat center center/100% auto;
	border-radius: 50%;
	width: 8.7rem;
	height: 8.7rem;
	left: 0.9rem;
	top: calc(50% - 8.7rem / 2);
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--main-color);
}
.info .myno small{
	font-size: 1.3rem;
}
.info p {
	color: #fff;
	font-size: 1.1rem;
	text-align: left;
}

/*--------------------トピックス--------------------*/
.topics_top {
	position: relative;
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 410 15" width="100%" height="15" preserveAspectRatio="none"><path d="M 0 5 Q 10.25 5 20.5 10 Q 41 20 61.5 10 Q 71.75 5 82 5 Q 92.25 5 102.5 10 Q 123 20 143.5 10 Q 153.75 5 164 5 Q 174.25 5 184.5 10 Q 205 20 225.5 10 Q 235.75 5 246 5 Q 256.25 5 266.5 10 Q 287 20 307.5 10 Q 317.75 5 328 5 Q 338.25 5 348.5 10 Q 369 20 389.5 10 Q 399.75 5 410 5 Q 420.25 5 430.5 10 Q 451 20 471.5 10 Q 481.75 5 492 5 L 410 0 L 0 0 Z" fill="%233FABE2"></path></svg>'), linear-gradient(#3FABE2 calc(100% - 0.6rem), transparent calc(100% - 0.6rem)) ;
	background-repeat: no-repeat;
	background-position: center bottom, center center;
	background-size: 41.0rem 0.9rem, 100% auto;
	padding: 4rem 1.5rem 2.5rem;
	margin-top: -2.0rem;
}
.topics_top .title{
	position: relative;
	border-bottom: var(--border1);
	border-color: #fff;
	padding-bottom: 0.4rem;
	font-size: 1.8rem;
	color: #fff;
}
.topics_top ul {
	margin: 1rem auto 0;
	padding: 0;
}
.topics_top ul li {
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
}
.topics_top ul li a{
	color: #fff;
}
.topics_top ul li span{
	margin-right: 1em;
	color: #fff;
	font-size: 1.2rem;
}
.topics_top .topics_link{
	position: absolute;
	display: block;
	background: #fff;
	border-radius: 0.5rem;
	padding: 0.3rem 1.5rem;
	top: 4rem;
	right: 1.5rem;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: right;
	color: #3FABE2;
	text-decoration: none;
	letter-spacing: 0.5rem;
}
/*--------------------スタンプ一覧--------------------*/
.stamp-list {
	position: relative;
}
.stamp-list .title{
	position: relative;
	background: url(../img/bg_title_stamplist.png) no-repeat center center/100% auto;
	height: 10.0rem;
	padding: 1.9rem 0 ;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--black);
}
/* ポイント表示 */
.point {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 1rem;
	background: url(../img/bg_point.png) no-repeat center center/100% auto;
	width: 30.6rem;
	height: 5.7rem;
	font-weight: 700;
	margin: -0.6rem auto 0;
}
.point span:nth-of-type(1){
	position: absolute;
	display: block;
	height: 100%;
	padding: 1.9rem 2.5rem 1.9rem 2.8rem;
	margin-right: auto;
	left: 0;
	top: 0;
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.3;
}
.point span:nth-of-type(2){
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.2rem 2.5rem 0 0;
	margin-left: auto;
	font-size: 3.7rem;
	color: var(--main-color);
}
.point small {
	font-size: 1.9rem;
}

.stamp-list ul {
	position: relative;
	background: url(../img/bg_stamplist.png) no-repeat center top/100% auto;
	height: 70.3rem;
}
.stamp-list ul::after{
	position: absolute;
	background: url(../img/stamplist_after.png) no-repeat center center/100% auto;
	content: "";
	width: 18.6rem;
	height: 14.6rem;
	left: 1.5rem;
	top: 50.9rem;
}
.stamp-list li {
	position: absolute;
	width: 6.8rem;
	animation: top_stamp 15s linear infinite both;
}
.stamp-list li:nth-of-type(1){left: 8.9rem; top: 5.1rem;}
.stamp-list li:nth-of-type(2){left: 2.2rem; top: 12.9rem; animation-delay: 1s;}
.stamp-list li:nth-of-type(3){left: 11.7rem; top: 12.4rem; animation-delay: 2s;}
.stamp-list li:nth-of-type(4){left: 22.5rem; top: 20.3rem; animation-delay: 3s;}
.stamp-list li:nth-of-type(5){left: 29.5rem; top: 25.4rem; animation-delay: 4s;}
.stamp-list li:nth-of-type(6){left: 21.5rem; top: 28.9rem; animation-delay: 5s;}
.stamp-list li:nth-of-type(7){left: 11.1rem; top: 35.2rem; animation-delay: 6s;}
.stamp-list li:nth-of-type(8){left: 2.1rem; top: 36.0rem; animation-delay: 7s;}
.stamp-list li:nth-of-type(9){left: 2.8rem; top: 44.4rem; animation-delay: 8s;}
.stamp-list li:nth-of-type(10){left: 12.2rem; top: 43.7rem; animation-delay: 9s;}
.stamp-list li:nth-of-type(11){left: 20.0rem; top: 39.0rem; animation-delay: 10s;}
.stamp-list li:nth-of-type(12){left: 28.7rem; top: 37.3rem; animation-delay: 11s;}
.stamp-list li:nth-of-type(13){left: 28.7rem; top: 46.1rem; animation-delay: 12s;}
.stamp-list li:nth-of-type(14){left: 28.7rem; top: 54.8rem; animation-delay: 13s;}
.stamp-list li:nth-of-type(15){left: 20.4rem; top: 52.7rem; animation-delay: 14s;}

.stamp-list .bt_loc{
	padding-top: 1.5rem;
	left: 20.1rem;
	top: 19.7rem;
}
.stamp-list .bt_loc::before{
	position: absolute;
	background: url(../img/bt_loc_before.png) no-repeat center center/100% auto;
	content: "";
	width: 16.1rem;
	height: 17.3rem;
	left: -0.4rem;
	top: -3.3rem;
	pointer-events: none;
}
.stamp-list .bt_mission{
	padding-top: 1.5rem;
	left: 4.9rem;
	top: 35.6rem;
}
.stamp-list .bt_mission::before{
	position: absolute;
	background: url(../img/bt_mission_before.png) no-repeat center center/100% auto;
	content: "";
	width: 18.1rem;
	height: 12.6rem;
	left: -2.7rem;
	top: 0.1rem;
	pointer-events: none;
}
.stamp-list .bt_loc::after,
.stamp-list .bt_mission::after{
	position: relative;
	background: url(../img/icon_arrow.png) no-repeat center center/100% auto;
	content: "";
	width: 2.4rem;
	height: 1.5rem;

}
/*--------------------賞品一覧--------------------*/
.prize-list {
	position: relative;
	background-image: url(../img/bg_prize_top.png), url(../img/bg_prize_bottom.png), linear-gradient(transparent 3.5rem, #0C96DC 3.5rem, #0C96DC calc(100% - 0.6rem), transparent calc(100% - 0.6rem)) ;
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 100% auto;
	padding: 3.5rem 0;
	margin-top: -3.7rem;
}
.prize-list .title{
	position: relative;
	background: url(../img/bg_title_prizelist.png) no-repeat center center/100% auto;
	height: 10.0rem;
	font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
}
.prize-list li {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.0rem;
	background-image: url(../img/bg_prize_detail_top.png), url(../img/bg_prize_detail_bottom.png), linear-gradient(#fff calc(100% - 0.8rem), transparent calc(100% - 0.8rem));
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 100% auto;
	width: 34.2rem;
	margin: 0 auto;
	padding: 100vw 0 3.3rem;
	transition : all 500ms;
}
.prize-list li.scrollin{
	padding: 0rem 0 3.3rem;
}
.prize-list li + li {
	margin-top: 6.2rem;
}
.prize-list li:nth-of-type(4){
	margin-top: 9.3rem;
}
.prize-list li:nth-of-type(1) .rank,
.prize-list li:nth-of-type(3) .rank{
	position: absolute;
	width: 17.3rem;
	left: 2.1rem;
	top: -2.0rem;
	transform: rotate(-3deg);
}
.prize-list li:nth-of-type(2) .rank{
	position: absolute;
	width: 17.3rem;
	left: 16.1rem;
	top: -2.0rem;
	transform: rotate(3deg);
}
.prize-list li:nth-of-type(4) .rank{
	position: absolute;
	width: 32.1rem;
	left: calc(50% - 32.1rem / 2);
	top: -5.6rem;
}
.prize-list li:nth-of-type(5) .rank{
	position: absolute;
	width: 26.0rem;
	left: calc(50% - 26.0rem / 2);
	top: -2.9rem;
	transform: rotate(-3deg);
}
.prize-list li p{
	font-size: 1.8rem;
	font-weight: 700;
	color: #EB6D9A;
}
.prize-list li p.red{
	font-size: 1.1rem;
}
.prize-list li:nth-of-type(1)::after{
	position: absolute;
	background: url(../img/prize1_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 6.0rem;
	left: calc(50% - 37.5rem / 2);
	top: 60.4rem;
	pointer-events: none;
}
.prize-list li:nth-of-type(2)::after{
	position: absolute;
	background: url(../img/prize2_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 26.4rem;
	left: calc(50% - 37.5rem / 2);
	top: -1.6rem;
	pointer-events: none;
}
.prize-list li:nth-of-type(3)::after{
	position: absolute;
	background: url(../img/prize3_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 36.4rem;
	left: calc(50% - 37.5rem / 2);
	top: -2.5rem;
	pointer-events: none;
}
.prize-list li:nth-of-type(4)::after{
	position: absolute;
	background: url(../img/prize4_after.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 8.4rem;
	left: calc(50% - 37.5rem / 2);
	top: 27.7rem;
	pointer-events: none;
}


/*--------------------リンク集集--------------------*/
.links .button{
	border-radius: 1.5rem;
	max-width: 30.9rem;
	min-height: 5.5rem;
	font-size: 1.6rem;
}

/*--------------------シェア--------------------*/
.share {
	position: relative;
	border-left: var(--sub-color) solid 0.2rem;
	border-right: var(--sub-color) solid 0.2rem;
	width: 32.5rem;
	margin: 4rem auto;
	padding: 0.1rem 0 0;
}
.share::before{
	position: absolute;
	background: url(../img/bg_share_top.png) no-repeat center top/100% auto;
	content: "";
	width: 100%;
	height: 1.7rem;
	left: 0;
	top: -1.7rem;
}
.share::after{
	position: absolute;
	background: url(../img/bg_share_bottom.png) no-repeat center bottom/100% auto;
	content: "";
	width: 100%;
	height: 2.0rem;
	left: 0;
	bottom: -2.0rem;
}
.share .title{
}
.share .share_prize{
	position: absolute;
	width: 16.6rem;
	right: -2.5rem;
	top: -2.5rem;
}
.share .prize_name{
	margin-top: 1.5rem;
	font-size: 1.8rem;
	font-weight: 700;
}
.share .catch{
	width: 28.8rem;
	margin: 0.5rem auto;
	font-size: 1.3rem;
	text-align: left;
}
.share .copy-text {
	position: relative;
	background: rgba(56, 172, 181, 0.12);
	border-radius: 1.0rem;
	width: 28.8rem;
	padding: 1.0rem;
	margin: 0.5em auto;
}
.share .copy-text::before{
	position: absolute;
	background: url(../img/camera.png) no-repeat center center/100% auto;
	content: "";
	width: 3.2rem;
	height: 2.3rem;
	right: 0;
	top: -1.1rem;
	transform: rotate(18.58deg);
}
.share .copy-text p{
	font-size: 2.5rem;
	font-weight: 700;
	color: #38ACB5;
}
.share .copy-text .button{
	background: var(--green);
	max-width: 24.0rem;
	min-height: 3.5rem;
	font-size: 1.6rem;
}
.insta{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18.0rem;
	margin: -1.0rem auto 0;
}
.insta::after{
	position: absolute;
	font-family: var(--msr);
	content: "\e879";
	right: -2.0rem;
	top: 1.0rem;
	font-size: 2.4rem;
	font-variation-settings: 'wght' 200;
}



/*====================================================================
　スタンプ拡大ポップアップ
====================================================================*/
.modal_box{
	position: fixed;
	display: none;
	background: rgba(0 ,0 ,0 ,0.7);
	width: 100%;
	height: 100vh;
	min-height: 100dvh;
	padding: 2rem;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 300;
	overflow-y: scroll;
}
.modal_block{
	background: #fff;
	width: 100%;
	padding: 2rem;
}
.modal_block img:nth-of-type(1){
	width: 70%;
	margin: 2rem auto 0;
}
.modal_block img:nth-of-type(2){
	width: 100%;
}
.modal_block .spot-title{
	margin: 2rem auto;
	font-size: 2.0rem;
	font-weight: 700;
}
.modal_block .spot-title span{
	font-size: 1.6rem;
}
.modal_close{
	display: block;
	font-size: 4rem;
	font-variation-settings: 'FILL' 1;
	color: #fff;
	margin: 2rem auto 3rem;
}

.magnify_popup{
	position: fixed;
	display: none;
	background: rgba(0 ,0 ,0 ,0.5);
	width: 100%;
	height: 100vh;
	min-height: 100dvh;
	padding: 2rem;
	text-align: center;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
	z-index: 300;
}
.magnify_popup .inner{
	position: relative;
	/* background: #fff; */
	width: 33.5rem;
	padding: 3rem 0;
}
.magnify_popup .magnify_img {
	width: 25.0rem;
	margin: 0 auto;
}
.magnify_popup .spot-name{
	width: 90%;
	margin: 2rem auto;
	font-size: 2.4rem;
	color: #fff;
}
.magnify_popup .close{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 1rem;
	top: 1rem;
	font-size: 5rem;
	font-variation-settings: 'wght' 400;
	color: #fff;
}
/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	background: url(../img/bg_getstamp.jpg) no-repeat center top/100% auto, url(../img/bg_getstamp_bottom.png) no-repeat center bottom/100% auto;
	background-color: var(--blue);
	padding: 0 0 3.0rem;
	text-align: center;
	overflow-y: scroll;
	overflow-x: hidden;
	min-height: 100dvh;
}
.getstamp::before{
	position: absolute;
	background: url(../img/bg_getstamp_inner.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 11.6rem;
	left: calc(50% - 37.5rem / 2);
	top: 41.7rem;
	z-index: 3;
}
/*--達成時のみにスタイルあてたい場合--
.getstamp:has(.congrats){

}*/
.stampget{
	position: relative;
	z-index: 3;
	animation: scale-up-center 0.4s 1.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.stampget::after{
	position: absolute;
	background: url(../img/woman.png) no-repeat center center/100% auto;
	content: "";
	width: 5.6rem;
	height: 10.5rem;
	left: 30.1rem;
	top: 8.3rem;
	transform: rotate(-2.17deg);
}
.getstamp .stamp-img {
	position: relative;
	width: 24.1rem;
	height: 24.1rem;
	margin: 1.6rem auto 17.9rem;
	z-index: 2;
}
.getstamp .stamp-img::before{
	position: absolute;
	background: url(../img/shine.png) no-repeat center center/100% auto;
	content: "";
	width: 55.4rem;
	height: 55.4rem;
	left: calc(50% - 55.4rem / 2);
	top: calc(50% - 55.4rem / 2);
	z-index: -1;
	animation: fade-in 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both, rotate-center 120s 0.7s linear infinite both;
}
.getstamp .stamp-img::after{
	position: absolute;
	background: url(../img/getstamp_before.png) no-repeat center center/100% auto;
	content: "";
	width: 37.5rem;
	height: 37.5rem;
	left: calc(50% - 37.5rem / 2);
	top: calc(50% - 37.5rem / 2);
	animation: scale-up-center 0.4s 1.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img img{
	width: 24.1rem;
	height: 24.1rem;
	animation: scale-up-center 0.4s 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: rotate-double 1.5s 0.5s step-start both;
	animation: complex2 1.5s linear both;
}

.getstamp .spot-title {
	padding: 0 2.0rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: #fff;
	animation: fade-in 1.2s 1.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message {
	position: relative;
	width: 100%;
	margin: 1.0rem auto 4.0rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	animation: fade-in 1.2s 1.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .message::before{
	position: absolute;
	background: url(../img/bubble.png) no-repeat center center/100% auto;
	content: "";
	width: 1.9rem;
	height: 1.9rem;
	left: 3.9rem;
	bottom: -1.9rem;
}
.getstamp .congrats {
	position: relative;
	background-image: url(../img/bg_congrats.png), url(../img/bg_prize_detail_bottom.png), linear-gradient(#fff calc(100% - 0.8rem), transparent calc(100% - 0.8rem));
	background-repeat: no-repeat;
	background-position: center top, center bottom, center center;
	background-size: 100% auto;
	width: 34.2rem;
	margin: 0rem auto;
	padding: 0 0 4.4rem;
	font-weight: 700;
	font-size: 1.7rem;
	color: #7D7D7D;
	animation: fade-in 1.2s 1.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .congrats p{
	margin-bottom: 1.5rem;
}

.getstamp .close {
	display: block;
	width: 5.0rem;
	margin: 3.5rem auto 0rem;
	animation: fade-in 1.2s 1.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) 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 {
}
.area-list li + li {
	border-top: 0.1rem solid #ccc;
}
.area-list li {
}
.area-list li a {
	position: relative;
	display: flex;
	align-items: baseline;
	padding: 1rem 3rem 1rem 1rem;
	width: 100%;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
}
.area-list li a span{
	font-size: 2.4rem;
}
.area-list li:nth-of-type(1) a span{
	color: var(--pink);
}
.area-list li:nth-of-type(2) a span{
	color: var(--green);
}
.area-list li:nth-of-type(3) a span{
	color: var(--blue);
}
.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: #2C82AE;
	color: #fff;
}
.spot-list .area{
	margin-top: 0.5rem;
}
.spot-list .areaname{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	border: var(--main-color) solid 0.1rem;
	border-radius: 10vw;
	margin: 0;
	padding: 1rem 2.0rem;
	color: var(--main-color);
	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{
	background: #2C82AE;
	color: #fff;
}
.spot-list .areaname.active::after{
	transform: rotateZ(180deg);
}
.spot-list .area_list{
	display: none;
	background: #fff;
	margin: 0;
	padding: 1rem 0;
	transform-origin: top;
}
.spot-list .areaname.active + .area_list,
.spot-list .areaname_list.opne{
	display: block;
}
.spot-list .accordion_title{
	justify-content: flex-start;
}
.spot-list ul + .accordion_title{
	margin-top: 0.2rem;
}
/* エリアリスト利用時ここまで */

.spot-list {
}
.spot-list li {
	position: relative;
	display: flex;
	align-items: center;
}
.spot-list li + li {
	border-top: 0.1rem solid #ccc;
}
.spot-list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 3rem;
	width: 100%;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
}
.spot-list.sapa li a{
	padding: 1rem;
}
.spot-list li a::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0.5rem;
}
.checked::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e834";
	font-variation-settings: 'FILL' 1;
	left: 0.5rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--main-color);
}
.nocheck::before{
	position: absolute;
	font-family: var(--ms);
	content: "\eb36";
	font-variation-settings: 'FILL' 1;
	left: 0.5rem;
	font-size: 1.4em;
	font-weight: 400;
	color: var(--light-gray);
}
.spot-list.sapa li.checked::before,
.spot-list.sapa li.nocheck::before{
	display: none;
}


/*====================================================================
　地点詳細画面
====================================================================*/
.spot {
}
.message-unacquired {
	margin: 2.5rem auto;
	color: var(--red);
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.message-sumi {
	margin: 2.5rem auto;
	color: #999;
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.message-gps {
	border: 0.2rem solid #eee;
	padding: 0.5rem;
	margin: 2rem auto;
	font-size: 1.4rem;
}

.spot .spot-img {
	position: relative;
	margin: 2rem auto;
}
.spot-trivia{
	margin: 2rem auto;
}
.spot .spot-detail {
	border: 0.1rem solid #ccc;
	border-collapse: collapse;
	margin: 2rem 0;
	width: 100%;
	text-align: left;
}
.spot .spot-detail tr:has(td:empty){
	display: none;
}
.spot .spot-detail tr:nth-of-type(n+2){
	border-top: #eee solid 0.1rem;
}
.spot .spot-detail th,
.spot .spot-detail td {
	padding: 1rem 0.5rem;
	word-break: break-word;
}
.spot .spot-detail th {
	width: 5em;
	vertical-align: top;
	text-align: center;
}
.spot .spot-detail td {
	line-height: 1.2;
}
.spot .spot-detail td span{
	position: relative;
	display: inline-block;
	margin-left: 0.5em;
	top: 0.3rem;
	font-size: 1.1em;
}
.spot .button{
	margin-top: 2rem;
}



/*====================================================================
　賞品一覧（個別ページ）
====================================================================*/
.prize {
}
.prize p + ul{
	margin-top: 1rem;
}
.prize ul {
	list-style-type: none;
}
.prize li {
	border: 0.2rem solid #999;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 1rem;
	text-align: center;
}
.prize li + li {
	margin-top: 2rem;
}
.prize li .apply-title {
	font-weight: 700;
	font-size: 2.0rem;
	margin: 0 0 1rem;
}
.prize li .apply-name {
	margin: 0.5rem 0;
}
.prize li .apply-name strong {
	color: var(--main-color);
}
.prize li .apply-name span {
	color: var(--red);
}




/*====================================================================
　引き換え画面
====================================================================*/
.exchange {
	text-align: center;
}
.exchange .redemption {
}
.exchange .redemption dt {
	display: inline-block;
	background: var(--main-color);
	border-radius: 100vw;
	padding: 0.5rem 1.5rem;
	margin: 2rem auto 0.5rem;
	color: #fff;
	font-weight: 700;
}
.exchange .redemption dd{

}
.exchange .caution {
	padding: 0 2rem;
	margin: 2rem auto 0.5rem;
	list-style-type: none;
	text-align: left;
}
.exchange .exchange-btn {
	text-align: center;
	margin: 2rem 0 1rem;
}
.exchange .exchange-btn label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
}
.exchange .exchange-btn p {
	font-size: 1.2rem;
}
.exchange .exchange-img{
	position: relative;
	margin: 2rem auto;
}
.exchange .exchange-img.sumi img{
	animation: grayscale 0.4s 0.8s linear both;
}
.exchange .exchange-img.sumi::after {
	position: absolute;
	background: rgba(255, 255, 255, 0.8);
	border: var(--red) solid 0.3rem;
	border-radius: 1rem;
	content: "引換済";
	padding: 0.5rem;
	width: 10rem;
	top: 40%;
	left: calc(50% - 5rem);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--red);
	transform: rotate(-15deg);
	animation: scale-down-center-roll_15 0.4s 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.exchange .exchange-result {
	text-align: center;
	background: var(--pale);
	padding: 2rem 0;
	margin: 2rem auto 0;
}
.exchange .exchange-result dt{
	font-weight: 700;
}
.exchange .exchange-result dd + dt{
	margin-top: 1rem;
}
.exchange .exchange-result dd{
	font-size: 2.2rem;
}



/*====================================================================
	クーポン
====================================================================*/
.coupon {
	text-align: center;
}
.coupon .coupon-img{
	position: relative;
	width: 22rem;
	margin: 1rem auto ;
}
.coupon .coupon-img_am {
	background: var(--pale);
	border: var(--main-color) solid 3px;
	border-right: var(--main-color) dotted 2px;
	width: 80%;
	padding: 0.25rem 0 0.25rem 0.25rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
}
.coupon .coupon-img_am span {
	display: block;
	border: var(--main-color) solid 1px;
	border-right: none;
	padding: 1.5rem 0.5rem;
}
.coupon .coupon-img_am span strong{
	font-size: 3.0rem;
}
.coupon .coupon-img_am span small {
	display: inline-block;
	border: var(--main-color) solid 1px;
	border-top: none;
	border-bottom: none;
	border-radius: 0.5rem;
	padding: 0 0.5rem;
	font-size: 1.2rem;
}
.coupon .coupon-img_am span small strong{
	font-size: 2rem;
}
.coupon .coupon_ticket {
	position: absolute;
	background: var(--pale);
	border: var(--main-color) solid 3px;
	border-left: none;
	width: 20%;
	height: 100%;
	padding: 0.25rem 0.25rem 0.25rem 0;
	top: 0;
	right: 0;
	font-weight: 700;
	color: var(--main-color);
	word-break: keep-all;
}
.coupon .coupon_ticket span{
	display: flex;
	justify-content: center;
	align-items: center;
	border: var(--main-color) solid 1px;
	border-left: none;
	width: 98%;
	height: 98%;
}
.coupon .coupon_ticket span p{
	transform: rotate(-90deg);
}
.coupon .sumi:after{
	position: absolute;
	content: "利用済み";
	background: rgba(255,255,255,0.8);
	border: var(--red) solid 0.3rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--red);
	top: 2rem;
	right: 0;
	animation: scale-down-center-roll_15 0.4s 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.coupon .sumi .coupon_ticket{
	animation: mogiri 1.2s 0.5s ease-in-out both;
}
.coupon .coupon-detail{
	margin: 2rem auto;
	width: 25rem;
	text-align: left;
}
.coupon .exchange-btn {
	text-align: center;
	margin: 2rem 0 1rem;
}
.coupon .exchange-btn label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
}
.coupon .exchange-btn p {
	font-size: 1.2rem;
}
.coupon .caution{
	width: 25rem;
	margin: 1rem auto 0;
	font-size: 1.0rem;
}
.coupon .coupon-result {
	text-align: center;
	background: var(--pale);
	padding: 2rem 0;
	margin: 2rem auto;
}
.coupon .coupon-result dt{
	font-weight: 700;
}
.coupon .coupon-result dd + dt{
	margin-top: 1rem;
}
.coupon .coupon-result dd{
	font-size: 2.2rem;
}
/*====================================================================
　壁紙画面設定
====================================================================*/
.wallpaper {
	text-align: center;
}
.wallpaper .list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.wallpaper .list li{
	width: calc(50% - 1rem);
}
/*--スワイプ式--*/
.wallpaper .swiper-slide {
	width: 70%!important;
	margin-bottom: 3rem;
}
.wallpaper .swiper-container {
	margin: 2rem auto!important;
}
.wallpaper .swiper-container .wallpaper-sample {
	width: 50%;
}
.wallpaper .swiper-container .button{
	font-size: 2rem;
}

.wallpaper .wallpaper-sample{
	border: 0.1rem solid #ccc;
	width: 80%;
	margin: 2rem auto;
}
.wallpaper .button{
	margin-top: 2rem;
	font-size: 1.6rem;
}
.wallpaper .size {
	border: 0.2rem dotted #ccc;
	border-radius: 0.5rem;
	margin: 2rem auto;
	list-style-type: none;
	text-align: center;
}
.wallpaper .size li {
	border-bottom: 0.2rem dotted #ccc;
}
.wallpaper .size li:last-child {
	border: none;
}
.wallpaper .size li a {
	display: block;
	width: 100%;
	font-weight: 700;
	text-decoration: none;
	padding: 0.5rem;
}
.wallpaper .size li a span {
	font-size: 1.0rem;
}
.wallpaper .download{
	border: 0.1rem solid #ccc;
	margin: 2rem auto;
}
.wallpaper p {
	font-size: 1.2rem;
}


/*====================================================================
　認定証　名前入力画面設定
====================================================================*/
.certification input {
	width: 100%;
}



/*====================================================================
　認定証　ダウンロード画面設定
====================================================================*/
.certification-download {
	text-align: center;
}

.certification-download p{
	margin: 1rem auto;
}
.certification-download strong {
	font-size: 2.2rem;
}



/*====================================================================
　ランキング画面設定
====================================================================*/
.your-ranking {
	color: var(--main-color);
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}
.your-ranking strong {
	background: var(--main-color);
	border-radius: 46rem;
	color: #fff;
	display: inline-block;
	width: 9.2rem;
	height: 9.2rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

.your-ranking strong img {
	width: 56%;
	display: inline-block;
	margin: 0 auto;
	padding-top: 1rem;
}
.ranking table{
	border-collapse: collapse;
	width: 100%;
	margin: 2rem auto 0;
}
.ranking tr{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
}
.ranking tr + tr{
	border-top: var(--main-color) solid 0.1rem;
	margin-top: 2rem;
	padding-top: 1rem;
}
.ranking th{
	width: 5.2rem;
}
.ranking th span{
	background: var(--main-color);
	border-radius: 10vw;
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	display: block;
	width: 5.2rem;
	height: 5.2rem;
	text-align: center;
}
.ranking tr:nth-of-type(1) span{
	background-image: linear-gradient(208deg, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
}
.ranking tr:nth-of-type(2) span{
  background-image: linear-gradient(45deg, rgba(171, 171, 171, 1), rgba(219, 219, 219, 1) 45%, rgba(236, 236, 236, 1) 54%, rgba(198, 198, 198, 1) 64%, rgba(218, 218, 218, 1) 100%, rgba(172, 172, 172, 1) 100%, rgba(214, 214, 214, 1));
}
.ranking tr:nth-of-type(3) span{
	background-image: linear-gradient(45deg, rgba(248, 134, 57, 1), rgba(97, 48, 48, 1));
}
.ranking th img {
	width: 56%;
	display: block;
	margin: 0 auto;
	padding-top: 0.5rem;
}
.ranking td{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 6.2rem);
	min-height: 3.2rem;
	padding: 1.2rem 0;
	font-size: 1.6rem;
	font-weight: 700;
}



/*====================================================================
　アルバム
====================================================================*/
.album {
}

.album ul {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin: 2rem auto;
	gap: 0.5rem;
}

.album li {
	padding: 0.2rem;
	margin-bottom: 0.5rem;
	text-align: center;
	width: calc((100% - 1rem) / 3);
	height: 12.4rem;
}

.album.en li {
	height: 15rem;
}

.album li a {
	background: #999;
	color: #fff;
	display: block;
	height: 12.4rem;
	padding: 0.5rem 0.5rem 0;
	text-decoration: none;
	position: relative;
}
.album li p {
	font-size: 1rem;
	font-weight: 700;
	position: relative;
	z-index: 30;
}
.album li strong {
	position: absolute;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.3rem;
	background: #fff;
	border-radius: 100vw;
	width: 90%;
	padding: 0.25rem;
	bottom: 1rem;
	left: 50%;
	color: #999;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	transform: translateX(-50%);
	z-index: 30;
}
.album li strong span{
	font-size: 1.4em;
}

.album li img {
	display: block;
	height: 12.4rem;
	object-fit: cover;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}

.album.en li img {
	height: 12.4rem;
}

.album .sumi a {
	background: #000;
}

.album .sumi strong {
	width: 80%;
}



/*====================================================================
　画像アップロード
====================================================================*/
.album .message {
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
	color: #f00;
}

.models {
	border: 0.2rem solid #ccc;
	padding: 0.5rem;
	margin-bottom: 2rem;
}

#input-group {
	position: relative;
	margin-bottom: 3rem;
}

#input-group input[type=file] {
	display: none;
}

#input-group label {
	position: relative;
	display: inline-block;
	background: #e8373d;
	border-radius: 100vw;
	padding: 0.5rem 1.5rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
}

#input-group label::after {
	position: absolute;
	content: "選択されていません";
	color: #333;
	font-size: 1.2rem;
	height: 2rem;
	width: auto;
	line-height: 2rem;
	right: -10em;
	top: calc(50% - 1rem);
}

#input-group label.changed::after {
	content: "";
}

#input-group .filename {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	width: 18.75rem;
	position: absolute;
	right: 0;
	top: calc(50% - 1rem);
}

.upload-attention {
	border: 0.2rem solid #ccc;
	font-size: 1.2rem;
	padding: 0.5rem;
	margin: 1rem 0 0;
}
.upload-img{
	margin: 2rem auto;
}


/*====================================================================
　音声再生
====================================================================*/
.play {
	text-align: center;
}
.play .title,
.play .artist {
	margin: 0.5rem auto;
}
.play audio{
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 100%;
}
/*====================================================================
　アンケート画面設定
====================================================================*/
.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);
}
/*====================================================================
　履歴画面設定
====================================================================*/
.tab {
	position: relative;
	display: flex;
	justify-content: center;
	background: #aaa;
	border-radius: 0.5rem 0.5rem 0 0;
}
.tab div {
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
	width: 50%;
	position: relative;
}
.tab div.active {
	background: var(--red);
	border-radius: 0.5rem 0.5rem 0 0;
}
.tab div.active::after {
	content: "";
	display: block;
	border-right: 2rem solid transparent;
	border-top: 2rem solid var(--red);
	border-left: 2rem solid transparent;
	position: absolute;
	bottom: -1rem;
	left: calc(50% - 2rem);
}
.tab div a {
	color: #fff;
	display: block;
	padding: 0.5rem;
	text-decoration: none;
}
.history-list {
	margin-top: 2rem;
}
.history-list div {
	display: none;
}
.history-list .show {
	display: block;
}

.history {
}
.history ul {
	margin-bottom: 2rem;
}
.history li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.5rem 0;
	font-weight: 700;
}
.history li span {
	display: block;
}
.history li .history-date {
	min-width: fit-content;
	margin: 0.5rem 0 0;
	color: var(--dark-gray);
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.history li .history-pt,
.history li .history-prize {
	color: var(--main-color);
	font-size: 1.8rem;
}
.history li .history-sumi {
	border: var(--middle-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-width: fit-content;
	height: fit-content;
	padding: 0.3rem 0.5rem;
	color: var(--middle-gray);
	font-size: 1.2rem;
}
.history li + li{
	border-top: var(--border1);
}
.history p.no-history {
	margin: 0 auto;
	font-size: 1.8rem;
	color: var(--middle-gray);
	font-weight: 700;
	text-align: center;
}


/*====================================================================
　トピックス設定
====================================================================*/
.topics_list {
}
.topics_list ul {
	margin: 0 auto;
}
.topics_list ul li {
	position: relative;
}
.topics_list ul li a{
	position: relative;
	display: block;
	text-align: left;
	padding: 0rem 3rem 1.5rem 0;
	text-decoration: none;
	color: var(--black);
}
.topics_list ul li a::after{
	position: absolute;
	font-family: var(--ms);
	content: "\e5cc";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	right: 0;
	top: calc(50% - 1rem);
	color: var(--main-color);
}
.topics_list ul li + li{
	border-top: var(--border1);
	padding-top: 1.5rem;
}
.topics_list span{
	color: var(--dark-gray);
}
.topics_list p{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.topics_list h3,
.topics_datail h3{
	margin-bottom: 0.5rem;
	color: var(--main-color);
	word-wrap: break-word;
}
.topics_datail {
}
.topics_datail .date{
	color: var(--dark-gray);
	text-align: left;
}
.topics_datail .note{
	text-align: left;
	margin-bottom: 2rem;
	word-break: break-word;
}


/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto 3.0rem;
}
.form dt {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	background: var(--pale);
	padding: 0.5em;
	font-size: 1.6rem;
	font-weight: 700;
}
.form dt small{
	margin-left: 0.5rem;
	font-size: 1.0rem;
	word-break: break-word;
}
.form * + dt{
	margin-top: 2rem;
}
.form dd {
	margin-top: 0.5rem;
	word-break: break-word;
}
.form dd.flex,
.form dd.flex50{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}
.form dd.flex label {
	margin-right: 1.0rem;
}
.form dd.flex50 label {
	width: 50%;
}
.form dd label {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.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.5rem;
	/* min-width: 3.6rem; */
	max-height: 2.1rem;
	color: var(--red);
	font-size: 1.2rem;
	line-height: 1;
	word-break: keep-all;
}
.prize-name {
	margin: 2rem auto;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	color: var(--main-color);
}
.spot_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;
}
.form_comp p.reset{
	border: var(--red) solid 0.2rem;
	border-radius: 1rem;
	padding: 1rem;
	color: var(--red);
}
input[type="radio"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 50%;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="radio"]:checked {
	border-color: var(--main-color);
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: var(--main-color);
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
input[type="checkbox"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="checkbox"]:checked {
	border-color: var(--main-color);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: var(--main-color);
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(6% 70%, 15% 54%, 43% 70%, 81% 8%, 97% 19%, 50% 95%);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
textarea{
	-webkit-appearance: none;
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-height: 3.6rem;
	padding: 0.5rem;
	font-size: 1.6rem;
	width: 100%;
}
input[type="date"]{
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	min-height: 3.6rem;
	padding: 0.5rem;
	font-size: 1.6rem;
}
textarea[disabled] {
	border-color: #ddd;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 0.5rem top 55%;
  background-size: 1.6rem 1.6rem;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	max-width: 100%;
	min-height: 3.6rem;
	padding: 0.5rem 2.5rem 0.5rem 0.5rem;
	font-size: 1.6rem;
	color: var(--black);
}
option:checked{
	background-color: var(--pale);
}
input:focus,
select:focus,
textarea:focus{
	outline: var(--main-color) solid 0.2rem;
}
::placeholder {
	color: #999;
	font-size: 0.9em;
}
input#textPassword{
	border: none;
}
.textPassword{
	position: relative;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	overflow: hidden;
}
.textPassword input,
.textPassword input:focus{
	outline: none;
}
.textPassword:has(input:focus){
	outline: var(--main-color) solid 0.2rem;
}
#buttonEye {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 10%;
	right: 0;
	top: 0;
}
#buttonEye.visibility::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f4";
}
#buttonEye.visibility_off::before{
	position: absolute;
	font-family: var(--ms);
	content: "\e8f5";
}
.other_checked{
	display: none;
}
.form dd:has(.other:checked) .other_checked{
	display: block;
	margin-top: 0.2rem;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention strong{
	font-size: 1.8rem;
}

.join_attention a{
	font-weight: 700;
}

.join_attention div{
	background: var(--pale);
	margin: 2rem 0 1rem;
	padding: 0.5rem;
}
.join_attention li{
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 700;
	font-size: 1.4rem;
}
.join_attention li + li{
	margin-top: 0.5rem;
}
.join_attention div + ul li{
	font-size: 1.2rem;
	font-weight: normal;
}

/*------初回アクセス時-----*/
.attention {
	position: fixed;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100vh;
	padding: 2rem;
	top: 0;
	left: 0;
	text-align: center;
	overflow-y: auto;
}
.attention div{
	background: #fff;
	border-radius: 1rem;
	height: 70%;
	padding: 2rem;
	margin-bottom: 2rem;
	overflow-y: scroll;
}
.attention dl{
	margin: 0 0 2rem;
}
.attention dt{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 1rem;
}
.attention dt span.material-symbols{
	margin: 0 1rem;
	color: #c92a19;
	font-variation-settings: 'FILL' 1;
}
.attention dd {
	padding: 0.5rem 0;
	text-align: left;
}
.attention ul li{
	padding: 0.5rem 1em;
	text-indent: -1em;
}
.attention ul li img{
	width: 15rem;
	margin: 0 auto;
}



/*====================================================================
　FAQ
====================================================================*/
.faq .title{
	background: var(--red);
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.faq img {
	width: 100%;
	margin: 1rem 0;
}
.faq dt {
	margin: 0;
	padding: 1rem 0;
	padding-left: 1.25em;
	text-indent: -1.25em;
	color: #185195;
}
.faq dt strong {
	font-size: 1.8rem;
}
.faq dd  {
	border-bottom: 0.1rem dotted #999;
	margin: 0 0 1rem;
	padding-bottom: 1em;
	padding-left: 1.25em;
	text-indent: -1.25em;
}
.faq dd strong {
	font-size: 1.8rem;
	color: var(--red);
}
.faq ul {
	padding: 0.5rem 0 0.5rem 1em;
	text-indent: -1em;
}
.faq .title2{
	background: #006298;
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
}
.faq .midashi{
	background: var(--red);
	padding: 0.5rem;
	margin: 0.5rem 0;
	color: #fff;
	font-weight: 700;
}

/*====================================================================
　自動翻訳の設定方法
====================================================================*/
.translate 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;
}