@charset "utf-8";

@import url("./animation.css");

:root{
	--black: #333;
	--light-gray: #ccc;
	--middle-gray: #999;
	--dark-gray: #666;
	--red: #CF1126;
	--blue: #1164e2;
	--green: #005E33;
	--yellow: #F5E828;
	--pale: color-mix(in srgb, var(--yellow) 30%, #fff 70%);
	--main-color: #005083;
	--sub-color: #023558;

	--border1: var(--main-color) solid 0.1rem;

	--main-font: "M PLUS Rounded 1c", sans-serif;
	--sub-font: "Roboto", 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: #005083;
	background-image: url(../img/bg.png), linear-gradient(#005083 200.0rem, #04243D 100%);
	background-repeat: repeat-y, no-repeat;
	background-position: center top, center top;
	background-size: 100% auto, 100% auto;
	min-height: 100dvh;
	color: var(--black);
	font-family: var(--main-font);
	font-size: 1.4rem;
	line-height: 1.5;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
main {
	position: relative;
	overflow-x: hidden;
}
img {
	display: block;
	width: 100%;
}
a {
	color: var(--red);
}
ul{
	list-style-type: none;
}
.caution li,
.indent{
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
}
.small{
	font-size: 0.8em;
}
.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;
}


.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;
}
.content h2{
	position: relative;
	background: var(--red);
	border-radius: 1.0rem 1.0rem 0 0;
	width: 33.5rem;
	padding: 1rem;
	left: calc(50% - 33.5rem / 2);
	top: -4.0rem;
	margin-bottom: -2.0rem;
	color: #fff;
}
/*--------------------枠--------------------*/
.section {
	padding-bottom: 3rem;
}

.block {
	padding: 2rem 0rem 3.0rem;
}
.block:has(.content h2){
	padding-top: 3rem;
}
/*--共通の枠が必要な場合などに利用--*/
.content{
	position: relative;
	background-color: rgba(255,255,255,1.0);
	background-image: url(../img/bg_content.png), url(../img/bg_content.png);
	background-repeat: repeat-y;
	background-position: left top, right top;
	background-size: 1.0rem auto;
	border-bottom: var(--red) solid 1.0rem;
	padding: 3rem 1.8rem 3rem;
	margin: 0 auto 2rem;
	width: 33.5rem;
}

/*--アコーディオン--*/
.accordion{
	margin: 0 auto;
}
.accordion_title{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #E60012;
	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: "\e313";
	font-size: 1.6em;
	font-variation-settings: 'wght' 400;
	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: 1.5rem 1.0rem;
	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) url(../img/bg_button.png) no-repeat center center/100% auto;
	border: #fff solid 0.3rem;
	border-radius: 100vw;
	width: 100%;
	max-width: 28.2rem;
	margin: auto;
	min-height: 6.5rem;
	font-family: var(--main-font);
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transform: rotateZ(0deg);
	box-shadow: inset 0 0 0 0.4rem #A2A2A2, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.button span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 4.7rem;
	padding: 0.5rem 0;
}
.button:disabled{
	background: var(--light-gray) url(../img/bg_button.png) no-repeat center center/100% auto;
	box-shadow: inset 0 0 0 0.4rem #A2A2A2, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.bt_next::after {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.1rem;
	font-family: var(--msr);
	content: "\e5df";
	font-size: 2.8rem;
	font-variation-settings: 'wght' 700;
	right: 2.0rem;
	color: var(--yellow);
}
.bt_top,
.bt_back{
	background-color: var(--yellow);
	background-image: url(../img/bg_yellow.png);
	max-width: 23.0rem;
	min-height: 5.0rem;
	font-size: 2.0rem;
	font-weight: 500;
	color: var(--sub-color);
	line-height: 1;
	box-shadow: inset 0 0 0 0.4rem #ddce01, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.bt_back::before {
	position: absolute;
	font-family: var(--msr);
	content: "\e5de";
	font-size: 2.8rem;
	font-variation-settings: 'wght' 700;
	left: 1rem;
}
.bt_sumi{
	background-color: var(--middle-gray);
	color: #ddd;
}
.bt_outside::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e89e";
	font-weight: 300;
	font-size: 2.5rem;
	right: 1.5rem;
}
.bt_copy::after {
	position: absolute;
	font-family: var(--ms);
	content: "\e14d";
	font-weight: 200;
	font-size: 2.5rem;
	right: 1rem;
}
.bt_checkin::after {
	position: relative;
	font-family: var(--ms);
	content: "\e569";
	font-variation-settings: 'FILL' 1;
	font-weight: 500;
	font-size: 2.0rem;
	margin-left: 1rem;
}
/*--------------------色--------------------*/
.red {
	color: var(--red);
}
.bt_cookie,
.bt_submit,
.bg_red{
	background: var(--red) url(../img/bg_red.png) no-repeat center center/100% auto;
	box-shadow: inset 0 0 0 0.4rem #950010, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.bg_blue{
	background-color: var(--blue);
}
.bg_green{
	background-color: var(--green);
	box-shadow: inset 0 0 0 0.4rem #004e2b, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.bg_yellow{
	background-color: var(--yellow);
}


/*====================================================================
　ヘッダー設定
====================================================================*/
header {
	width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
	position: relative;
	width: 100%;
	left: 0;
	bottom: 0;
}
footer .accordion_title::before{
	position: absolute;
	background: url(../img/ice.png) no-repeat center center/100% auto;
	content: "";
	width: 5.7rem;
	height: 6.2rem;
	left: 0.4rem;
	top: -1.4rem;
}
/*====================================================================
　規約・概要
====================================================================*/
.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;
}
/*====================================================================
　マイページポップアップ設定
====================================================================*/
.popup {
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	padding: 2rem;
	top: 0;
	left: 0;
	z-index: 500;
}
.popup > div {
	background: #fff;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	font-weight: 700;
}
.popup div strong {
	color: var(--red);
	font-size: 1.8rem;
}
.popup .close {
	background: none;
	margin-top: 2rem;
	color: #fff;
	font-size: 5.0rem;
	font-variation-settings: 'FILL' 1;
}
/*--------------------ユーザー情報--------------------*/
.info {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 1.4rem 0.7rem;
}
.info .name {
	font-size: 2.0rem;
	font-weight: 700;
}
.info .name small{
	font-size: 1.5rem;
}
.info .myno {
	position: relative;
	background: #fff;
	border-radius: 10vw;
	min-width: 13.2rem;
	height: 2.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
}
.info .myno small{
	font-size: 1.2rem;
}
.info p {
	font-size: 1.0rem;
	font-weight: 500;
	color: #fff;
	text-align: left;
}

/*--------------------スタンプ一覧--------------------*/
.top_lot {
	position: relative;
}
/* ポイント表示 */
.point {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 0.5rem;
	background: #023558;
	border-top: #fff solid 0.1rem;
	border-bottom: #fff solid 0.1rem;
	height: 7.8rem;
	margin: 1.6rem auto 2.4rem;
}
.point::before{
	position: absolute;
	background: url(../img/firework1.png) no-repeat center center/100% auto;
	content: "";
	width: 5.6rem;
	height: 5.6rem;
	left: 1.0rem;
	top: -2.3rem ;
	animation: firework 5s linear infinite both;
}
.point::after{
	position: absolute;
	background: url(../img/firework2.png) no-repeat center center/100% auto;
	content: "";
	width: 5.9rem;
	height: 5.9rem;
	right: 0.9rem;
	bottom: -1.1rem ;
	animation: firework 5s -1.5s linear infinite both;
}
.point .title{
	position: relative;
	margin: -2.0rem auto -1.0rem;
}
.point span{
	font-family: var(--sub-font);
	font-weight: 600;
	color: #fff;
}
.point span:nth-of-type(1){
	font-size: 4.4rem;
}
.point span:nth-of-type(2){
	position: relative;
	display: block;
	width: 3.0rem;
	top: 0.5rem;
}
.point strong {
	font-size: 2.6rem;
}
.top_lot p{
	width: 33.5rem;
	margin: 1.6rem auto 0rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
}
.btn_qr{
	background: var(--yellow);
	border: var(--sub-color) solid 0.2rem;
	border-radius: 0.8rem;
	max-width: 30.4rem;
	min-height: 6.6rem;
	font-size: 2rem;
	font-weight: 700;
	box-shadow: 0 0.7rem 0 rgba(0 ,0 ,0 ,0.15);
}
.btn_qr::after {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--sub-color);
	border-radius: 0 0.4rem 0.4rem 0;
	width: 2.1rem;
	height: 6.4rem;
	font-family: var(--msr);
	content: "\e5df";
	font-size: 2.8rem;
	font-variation-settings: 'wght' 700;
	right: 0;
}

.btn_lot{
	position: relative;
	background: url(../img/bg_btn_lot.png) no-repeat left center/200% auto;
	height: 46.7rem;
	padding: 6.1rem 0;
	margin: -2.1rem 0;
	animation: btn_lot 2s steps(1) infinite both;
}
.btn_lot .button::before{
	position: absolute;
	background: url(../img/wadaiko.png) no-repeat center center/100% auto;
	content: "";
	width: 8.3rem;
	height: 6.4rem;
	left: -2.5rem;
	top: -0.2rem;
	filter: drop-shadow(0.2rem 0.4rem 0.4rem rgba(0,0,0,0.25));
}
.lot_off{
	box-shadow: inset 0 0 0 0.4rem #A2A2A2, 0 0.4rem 1.6rem #C7C7C7;
}
.lot_on{
	background-color: var(--red);
	box-shadow: inset 0 0 0 0.4rem #950010, 0 0.4rem 1.6rem #F49200;
}

/*--------------------賞品一覧--------------------*/
.prize{
	position: relative;
	margin-bottom: 4.4rem;
}
.special{
	position: relative;
	background-image: linear-gradient(90deg, var(--red) 1.5rem, #fff 1.5rem);
	background-repeat: repeat-x;
	background-position: left top;
	background-size: 2.9rem 100%;
	border-top: var(--red) solid 1.6rem;
	border-right: var(--red) solid 0.1rem;
	width: 33.5rem;
	/* height: 34.5rem; */
	height: 54.5rem;
	margin: -16.6rem 2.1rem 8.8rem;
}
.special .title{
	position: relative;
	width: 37.5rem;
	left: calc(50% - 37.5rem / 2);
	top: -4.4rem;
	margin-bottom: -3.5rem;
	z-index: 2;
}
.special .prize_img{
	position: relative;
	width: 27.5rem;
	margin: 0 auto;
}
.special .prize_img img{
	border-radius: 1.5rem;
}
.special .prize_img.gold{
	margin: -8rem auto 0;
}
.special .winner{
	position: absolute;
	width: 7.8rem;
	height: auto;
	right: -3.4rem;
	bottom: -2.5rem;
	filter: drop-shadow(0 0 0.4rem rgba(0,0,0,0.6));
}
.special .winner img{
	border-radius: 0;
}
.special .prize_detail{
	display: block;
	width: 19.3rem;
	margin: 1.2rem -0.6rem auto auto;
}
.special::before{
	position: absolute;
	background: url(../img/bg_special.png) no-repeat center top;
	content: "";
	width: 37.5rem;
	height: 25.1rem;
	left: calc(50% - 37.5rem / 2);
	bottom: -8.8rem;
	z-index: -1;
}
.special::after{
	position: absolute;
	background: url(../img/janjoosten.png) no-repeat center center/100% auto;
	content: "";
	width: 18.1rem;
	height: 20.7rem;
	left: -1.8rem;
	bottom: -14.2rem;
}


.prize-list{
	position: relative;
	background-color: #fff;
	background: #fff url(../img/bg_prizelist.png) no-repeat center top/100% auto;
	border: #E60012 solid 0.8rem;
	padding: 3.5rem 0;
}
.prize-list li {
	position: relative;
}
.prize-list li + li {
	margin-top: 3rem;
}
.prize-list li .title{
	position: relative;
}
.prize-list li:nth-of-type(1) .title::after{
	position: absolute;
	background: url(../img/firework2.png) no-repeat center center/100% auto;
	content: "";
	width: 7.4rem;
	height: 7.4rem;
	right: 1.1rem;
	top: 0.7rem;
	animation: firework 5s linear infinite both;
}
.prize-list li:nth-of-type(2) .title::before{
	position: absolute;
	background: url(../img/firework1.png) no-repeat center center/100% auto;
	content: "";
	width: 7.8rem;
	height: 7.8rem;
	left: -0.1rem;
	top: -1.4rem;
	z-index: 2;
	animation: firework 5s -1.5s linear infinite both;
}
.prize-list li:nth-of-type(2) .title::after{
	position: absolute;
	background: url(../img/firework2.png) no-repeat center center/100% auto;
	content: "";
	width: 7.4rem;
	height: 7.4rem;
	right: -0.4rem;
	top: 5.2rem;
	z-index: 2;
	animation: firework 5s -2.5s linear infinite both;
}
.prize_name{
	position: relative;
	background: var(--yellow);
	width: 100%;
	max-width: 30.5rem;
	margin: 1rem auto 2.0rem;
	padding: 1.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--green);
	text-align: center;
}
.prize_detail{
	margin: 1rem auto;
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--red);
}
.bt_exchange::before{
	position: absolute;
	background: url(../img/happi.png) no-repeat center center/100% auto;
	content: "";
	width: 6.9rem;
	height: 6.9rem;
	left: -1.5rem;
}
.bt_apply::before{
	position: absolute;
	background: url(../img/suika.png) no-repeat center center/100% auto;
	content: "";
	width: 7.4rem;
	height: 5.7rem;
	top: -0.5rem;
	left: -2.0rem;
}


/*--------------------リンク集集--------------------*/
.links {
}
.bt_history{
	background: #1098D2 url(../img/bg_blue.png) no-repeat center center/100% auto;
	border: #fff solid 0.4rem;
	border-radius: 1.0rem;
	min-height: 7.6rem;
	font-size: 2.0rem;
	box-shadow: inset 0 0 0.9rem 0 rgba(0 ,0 ,0 ,0.5);
}
.bt_history::before{
	position: absolute;
	background: url(../img/kingyo.png) no-repeat center center/100% auto;
	content: "";
	width: 6.9rem;
	height: 9.0rem;
	left: -2.5rem;
	top: -1.8rem;
}

/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.getstamp {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 6rem 0 2.0rem;
	text-align: center;
	overflow-x: hidden;
	overflow-y: scroll;
	width: 37.5rem;
	min-height: 100dvh;
}
/*--達成時のみにスタイルあてたい場合--
.getstamp:has(.congrats){

}*/
.stampget{
	position: relative;
	z-index: 2;
}
.stampget::before,
.stampget::after{
	position: absolute;
	background: url(../img/firework1.png) no-repeat center center/100% auto;
	content: "";
	width: 18.0rem;
	height: 18.0rem;
	left: 2rem;
	top: -3rem;
	animation: scale-up-center 0.5s 0.3s cubic-bezier(0.175, 0.885, 0.320, 1.0) both, fade-out 0.3s 0.9s linear both;
}
.stampget::after{
	background-image: url(../img/firework2.png);
	left: 18.0rem;
	top: 10.0rem;
	animation-delay: 0.5s, 1.1s;
}
.stampget img{
	animation: scale-up-center 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 37.5rem;
	height: 30.0rem;
	margin: -12.0rem 0 -3.0rem;
}
.getstamp .stamp-img::before{
	position: absolute;
	background: url(../img/bg_getpoint_img.png) no-repeat center center/100% auto;
	content: "";
	width: 54.7rem;
	height: 50.0rem;
	left: calc(50% - 54.7rem / 2);
	top: calc(50% - 50.0rem / 2);
	animation: scale-up-center 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.getstamp .stamp-img::after{
	position: absolute;
	background: url(../img/janjoosten.png) no-repeat center center/100% auto;
	content: "";
	width: 18.1rem;
	height: 20.7rem;
	left: 0.5rem;
	bottom: -10.2rem;
}
.getstamp .stamp-img img{
	margin: 1rem auto;
	animation: scale-up-center 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.getstamp .message {
	margin: 1.5rem auto;
	font-size: 2.0rem;
	font-weight: 700;
	text-shadow: 0 0.1rem 0 #fff, 0 -0.1rem 0 #fff, 0.1rem 0 0 #fff, -0.1rem 0 0 #fff;
	filter: drop-shadow(0 0 0.5rem #fff) drop-shadow(0 0 1.0rem #fff);
	animation: fade-in 0.4s 2.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .result {
	margin: 1.5rem auto;
	animation: fade-in 0.4s 2.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.getstamp .result p{
	width: 33.5rem;
	margin: 1rem auto;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	text-align: left;
}

.getstamp .bg_red {
	align-items: baseline;
	padding-top: 1.8rem;
	margin: 1.5rem auto;
	font-size: 1.8rem;
	line-height: 1.3;
}
.getstamp .bg_red small{
	font-size: 1.3rem;
}

.getstamp .close {
	display: block;
	margin: auto auto 3rem;
	font-size: 5rem;
	text-decoration: none;
	color: var(--yellow);
	font-variation-settings: 'FILL' 1;
	animation: fade-in 0.4s 2.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/*====================================================================
　抽選結果画面
====================================================================*/
.lot_movie{
	position: relative;
	margin: 0 auto 2rem;
}
.lot_image{
	position: relative;
	min-height: 28.1rem;
	padding: 14rem 0 0;
	margin: 0 auto 2rem;
}
.lot_image img{
	position: absolute;
	width: 102%;
	left: 0;
	top: 0;
	border-right: var(--main-color) solid 0.5rem;
	/* width: 110%;
	left: calc(50% - 110% / 2); */
}
.dark{
	filter: blur(0.5rem);
}
.lot_image .hide{
	opacity: 0;
}
.lot_image .lot_btn1::before{
	position: absolute;
	background: url(../img/wadaiko.png) no-repeat center center/100% auto;
	content: "";
	width: 8.3rem;
	height: 6.4rem;
	left: -2.5rem;
	top: -0.2rem;
	filter: drop-shadow(0.2rem 0.4rem 0.4rem rgba(0,0,0,0.25));
}
.lot_image .lot_btn2{
	background-color: var(--red);
	background-image: url(../img/bg_red.png);
	max-width: 18rem;
	min-height: 4.0rem;
	margin-top: 2rem;
	font-size: 1.6rem;
	box-shadow: inset 0 0 0 0.4rem #950010, 0 0 1.0rem rgba(0 ,0 ,0 ,0.2);
}
.lot_movie form{
	position: relative;
	text-align: center;
}
.result_btn{
	background-image: url(../img/bg_red.png);
	animation: fade-in 0.4s 10s linear both,pointer 0.1s 10s linear both;
}
.lot_result{
	position: relative;
	display: none;
}
.lot_result dl{
	position: relative;
	width: 30rem;
	margin: 0 auto 2rem;
	font-weight: 700;
}
.lot_result dt{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	height: 4rem;
	font-size: 1.8rem;
	color: #fff;
}
.lot_result dd{
	background: #fff;
	padding: 1rem;
	text-align: center;
}
.lot_result dd li{
	color: var(--red);
}
.lot_result dd li + li{
	margin-top: 1rem;
}
.fadein{
	margin-top: 16rem;
	animation: fade-in 0.4s 10s linear both;
}


/*====================================================================
　引換え画面
====================================================================*/
.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 .note {
	text-align: center;
	background: #ffcbcb;
	border: var(--red) solid 0.2rem;
	width: 100%;
}
.exchange .note dt{
	background: var(--red);
	padding: 0.25rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
}
.exchange .note dd{
	padding: 1rem 0.5rem;
	margin-top: 0;
	text-align: center;
	color: var(--red);
	font-weight: 500;
}
.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;
	width: 20.0rem;
	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: 12rem;
	top: 40%;
	left: calc(50% - 6rem);
	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: 0rem 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;
}
.exchange .exchange-result dd li + li{
	border-top: var(--black) dashed 0.1rem;
}
.exchange .exchange-result dd small{
	font-size: 1.5rem;
}
.exchange .info .myno{
	font-size: 2.6rem;
}
.exchange .info .myno small{
	font-size: 1.8rem;
}


/*====================================================================
　履歴画面設定
====================================================================*/
.history li {
	padding: 0.5rem;
	font-weight: 700;
}
.history li + li{
	border-top: 0.1rem dotted #999;
}
.history li span {
	display: block;
}
.history li .history-date {
	margin: 0.5rem 1rem 0 0;
	color: #666;
	font-size: 1.2rem;
	font-weight: normal;
}
.history li .history-pt,
.history li .history-prize {
	color: var(--main-color);
	font-size: 1.8rem;
}
.history li .history-sumi {
	display: inline-block;
	background: #FFDBDD;
	border-radius: 1rem;
	margin: 0.5rem auto 0;
	padding: 0.5rem 1rem;
	color: var(--red);
	font-size: 1.2rem;
}
.history p.no-history {
	margin: 0 auto;
	font-size: 1.8rem;
	color: var(--middle-gray);
	font-weight: 700;
	text-align: center;
}



/*====================================================================
　フォーム設定
====================================================================*/
.form dl{
	margin: 1em auto;
}
.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;
}
.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.5rem;
	/* margin-left: auto; */
	/* min-width: 3.6rem; */
	max-height: 2.1rem;
	color: var(--red);
	font-size: 1.2rem;
	line-height: 1;
	word-break: keep-all;
}
.exchange .prize_name,
.form .prize_name {
	background: none;
	margin: 0 auto 2rem;
	padding: 0 0 0.5rem;
	font-size: 1.4rem;
}
.exchange .prize_name li + li,
.form .prize_name li + li{
	border-top: var(--red) dotted 0.1rem;
	padding: 0.5rem 0;
}
.form .caution{
	margin-top: 2rem;
}
.form .caution li{
	font-size: 1.2rem;
}
.form_comp{
	text-align: center;
}
.form_comp p{
	margin: 2rem auto;
}
input[type="radio"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 50%;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="radio"]:checked {
	border-color: var(--main-color);
}
input[type="radio"]:checked:before {
	position: absolute;
	display: block;
	content: "";
	background: var(--main-color);
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	left: calc(50% - (1rem / 2));
	top: calc(50% - (1rem / 2));
}
input[type="checkbox"] {
	appearance: none;
	position: relative;
	background: #fff;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}
input[type="checkbox"]:checked {
	border-color: var(--main-color);
}
input[type="checkbox"]:checked:before {
	position: absolute;
	display: block;
	background: var(--main-color);
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(6% 70%, 15% 54%, 43% 70%, 81% 8%, 97% 19%, 50% 95%);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
textarea{
	appearance: none;
	border: var(--light-gray) solid 0.1rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
	font-size: 1.6rem;
	width: 100%;
}
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;
}
/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention{
	width: 100%;
	max-width: 33.9rem;
	margin-top: 4.2rem;
	font-weight: 700;
}
.join_attention dt{
	position: relative;
	background: var(--yellow);
	border-radius: 0.8rem;
	padding: 1.0rem;
	color: var(--sub-color);
}
.join_attention dt::before{
	position: absolute;
	background: url(../img/uchiwa.png) no-repeat center center/100% auto;
	content: "";
	width: 6.0rem;
	height: 7.6rem;
	left: 0.8rem;
}
.join_attention dt::after{
	content: "\e313";
}
.join_attention dt.active{
	border-radius: 0.8rem 0.8rem 0 0;
}
.join_attention dd{
	border-radius: 0 0 0.8rem 0.8rem;
	padding: 1.5rem 1.0rem;
	text-align: left;
}
.join_attention strong{
	font-size: 1.6rem;
	color: var(--sub-color);
}

.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;
}

/*------初回アクセス時-----*/
.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;
}