@charset "shift-jis";

:root {
	--bodyColor:#fafafa;				/*bodyの背景色*/
	--mainColor:#fff;					/*メインの背景色*/
	--subColor:#000000;				/*ヘッダー/フッターなどの背景色*/
	--accentColor:#6f6dfe;				/*アクセントカラー*/

	--btnColor-main:#c22a2a;			/*ボタンの背景色など*/
	--btnColor-sub:#fff;				/*ボタンの文字など*/

	--btnColor-main-negativ:#e0e0e0;	/*disableボタンの背景色など*/
	--btnColor-sub-negativ:#919191;	/*disableボタンの文字など*/

	--navigationColor-main:#6b6b6b;	/*ナビゲーションの背景色など*/
	--navigationColor-sub:#e02626;		/*ナビゲーションの文字など*/

	--textColor-main:#000;				/*文字色*/
	--textLinkColor-main:#000;			/*テキストリンク*/
	--borderColor-main:#e5e5e5;		/*ボーダー*/

	--mailStatusColor-main:#e02626;	/*未読*/
	--mailStatusColor-sub:#9B9B9B;		/*既読*/
}

body{
	color: var(--textColor-main);
	background: var(--bodyColor);
	font-family: "Helvetica Neue","Helvetica", "Arial", "Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo", sans-serif;
	font-weight: 500;
	background: #222222;
}

header,footer{
	width: 100%;
}

p{
	font-size: 1.5rem;
	line-height: 1.75;
}

a{
	color: var(--textLinkColor-main);
}

.hide-sp{
	display: none;
}

/*PC用設定*/
@media ( min-width : 980px ){
	.hide-pc{
		display: none;
	}
	.show-pc{
		display: block;
	}
}

/*-----------------------------------------------
TOP
-----------------------------------------------*/
.container{
	max-width: 460px;
	margin: 0 auto;
	padding: 0 0 32px 0;
	background: #ffff00;
}

.enrtyAreaTitle{
	margin-top: -16px;
}

.btnEntry{
	display: block;
	margin: 0 auto 8px;
	width: 90%;
	overflow: hidden;
}

.dokidoki {
	animation: dokidoki 1.5s infinite;
}
@keyframes dokidoki {
	0% {transform: scale(1.05);}
	5% {transform: scale(1);}
	50%{-webkit-transform: scale(1.05);}
	55%{transform: scale(1);}
	90%{-webkit-transform: scale(1.05);}
	95%{transform: scale(1);}
	100%{-webkit-transform: scale(1.05);}
}

/*-----------------------------------------------
モーダルウィンドウ
-----------------------------------------------*/
#modal{
	display: none;
}

#modalwindow{
	position: fixed;
	top:0; 
	left:0; 
	width:100%; 
	height:100%;
	height:100vh;
	background:rgba(0,0,0,.75);
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
}

#modal.forNotification .modalwindowContents{
	width: 90%;
	max-width: 480px;
	max-height: 80vh;
	overflow-y: scroll;
	margin: 0 auto;
	padding: 16px;
	background:#fff;
	border-radius: 8px;
	position: relative;
	-ms-overflow-style: none;/*スクロールバー非表示（IE・Edge）*/
	scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
}

/*スクロールバー非表示（Chrome・Safari）*/
#modal.forNotification .modalwindowContents::-webkit-scrollbar{
	display:none;
}

#modal.forNotification .modalwindowContents .icon-close{
	position: absolute;
	right: 8px;
	top: 8px;
	width: 24px;
	height: 24px;
	background-image: url(../img/img-crossmark.png);
	background-size: cover;
	cursor: pointer;
}

/*LINE登録用モーダル*/
#modal.forNotification .modalwindowContents-line{
	width: 90%;
	max-width: 420px;
	padding: 16px;
	background: #fcfcfc;
	border: 3px solid #009e28;
}

#modal.forNotification  .modalwindowContents-line .title{
	padding: 8px 0 16px;
	font-size: 2rem;
	color: #06C755;
	text-align: center;
	font-weight: bold;
}

#modal.forNotification .modalwindowContents-line .lineEntryArea{
	padding-bottom: 16px;
}

/*ボタン-SP用*/
#modal.forNotification .modalwindowContents-line .btn{
	width: 100%;
	margin: 0px auto;
	padding: 1rem 0;
	font-size: 1.8rem;
	color:#fff;
	background: #06C755;
	border-radius: 3em;
	border: double 8px;
	position: relative;
}

/*QRコード-PC用*/
#modal.forNotification .modalwindowContents-line .qrCode{
	display: block;
	width: 50%;
	margin: 32px auto 0;
	padding: 8px;
	background-color: #06C755;
}