@charset "UTF-8";

:root {
	--bgColor-body:#fafafa;			/*bodyの背景色*/
	--bgColor-header:#fff;			/*ヘッダー背景色*/
	--bgColor-main:#fff;			/*メインの背景色*/
	--bgColor-footer:rgba(82, 0, 136,.85);	/*フッタの背景色*/

	--mainColor:#7c00cf;			/*メインカラー*/
	--subColor:#520088;			/*サブカラー*/
	--accentColor:#cfae37;			/*アクセントカラー*/

	--btnColor-main:#00b900;		/*ボタンの背景色*/
	--btnColor-sub:#fff;			/*ボタンの文字色*/

	--btnColor-main-negativ:#6b6b6b;	/*disableボタンの背景色*/
	--btnColor-sub-negativ:#ffffff;		/*disableボタンの文字色*/

	--textColor-main:#000;			/*文字色*/
	--textLinkColor-main:#000;		/*テキストリンク*/

	--borderColor-main:#e5e5e5;		/*ボーダー*/

	--height-header:56px;			/*ヘッダー高さ*/
}

body{
	color: var(--textColor-main);
	font-family: "Helvetica Neue","Helvetica", "Arial", "Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo", sans-serif;
	font-weight: 500;
}

p{
	line-height: 1.75;
}

a{
	color: var(--textLinkColor-main);
}

/*----------------------------------------------
レイアウト
-----------------------------------------------*/
header{
	width: 100%;
	top: 0;
	position: fixed;
	z-index: 996;
	height: var(--height-header);
	background: var(--bgColor-header);
	border-bottom: 2px solid var(--borderColor-main);
}

main{
	padding-top: 56px;
	min-height: calc(100dvh - var(--height-header));
}

footer{
	width: 100%;
}

footer p{
	user-select: none;
}

.wrapper{
	max-width: 768px;
	margin: 0 auto;
	padding: 0;
}

#video-area{
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	position: fixed;
	z-index: -1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

#video{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-height: 100%;
	min-width: 100%;
	object-fit: cover;
	opacity: .7;
}

/*----------------------------------------------
アニメーション
-----------------------------------------------*/
.anime-scale{
	animation: scale 2s ease-in-out infinite;
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	25% {
		transform: scale(1.1);
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

.anime-rotate{
	animation: rotation 1.5s linear infinite;
}


/*----------------------------------------------
見出し/テキスト系
-----------------------------------------------*/
.contentsTitle{
	margin: 0 auto 16px;
	padding: .5em;
	text-align: center;
	font-size: 2.4rem;
	color: #fff;
	background: linear-gradient(#6e00b8,#8750ec);
}

.textCaution{
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
}

/*----------------------------------------------
ボタン系
-----------------------------------------------*/
.btn{
	width: 100%;
	margin: 24px auto;
	padding: 16px;
	font-size: 1.8rem;
	color:var(--btnColor-sub);
	background: var(--btnColor-main);
	border-radius: 126px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

@media ( min-width : 980px ){
	.btn:hover{
		opacity: .75;
	}
}

.icon-line{
	display: inline-block;
	margin-right: 16px;
	width: 46px;
	height: 44px;
	-webkit-mask-image: url('../img/svg-line.svg');
	mask-image: url('../img/svg-line.svg');
	background: #fff;
	vertical-align: middle;
}

/*-----------------------------------------------
アイコン
-----------------------------------------------*/
.icon{
	display: block;
	width: 24px;
	height: 24px;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.icon-close{
	-webkit-mask-image: url('../img/svg-crossmark.svg');
	mask-image: url('../img/svg-crossmark.svg');
}

.icon-leftArrow{
	-webkit-mask-image: url('../img/svg-leftArrow.svg');
	mask-image: url('../img/svg-leftArrow.svg');
}

.icon-user{
	-webkit-mask-image: url('../img/svg-user.svg');
	mask-image: url('../img/svg-user.svg');
}

.icon-mapPin{
	-webkit-mask-image: url('../img/svg-mapPin.svg');
	mask-image: url('../img/svg-mapPin.svg');
}

.icon-loard{
	-webkit-mask-image: url('../img/svg-loard.svg');
	mask-image: url('../img/svg-loard.svg');
}

/*----------------------------------------------
ヘッダー
-----------------------------------------------*/
.headerInner{
	width: 100%;
	height: var(--height-header);
	position: relative;
}

.pageBack{
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 8px;
	left: 8px;
}

.pageBack .icon{
	display: block;
	width: inherit;
	height: inherit;
	background:var(--btnColor-main-negativ);
}

.pageTitle{
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
}

/*-----------------------------------------------
フッター
-----------------------------------------------*/
footer .wrapper{
	color: #fff;
	background: var(--bgColor-footer);
}

.footerLinkList{
	padding: 8px 0;
}

.footerLinkList_item{
	width: 33.333%;
}

.footerLinkList_item_link{
	display: block;
	width: 100%;
	padding-top: 8px;
	font-size: 1.1rem;
	text-align: center;
	color: #fff;
}

/*-----------------------------------------------
TOPページ
-----------------------------------------------*/
#topPage  header{
	position: static;
	height: 0;
	border: none;
}

#topPage main{
	padding-top: 0;
}

.entryArea{
	margin: 0 auto;
	padding: 16px;
	overflow: hidden;
}

.entryArea .btn{
	width: 90%;
}

.mainVIsual{
	display: block;
	margin-top: 16px;
}

.flow{
	padding-bottom:16px;
	background: rgba(165, 39, 223, 0.65);
}

.voice{
	padding-bottom:16px;
	background: rgba(170, 12, 185, 0.85);
}

.userVoice{
	display: block;
	margin: 0 auto 16px;
	width: 96%;
}

.online{
	padding-bottom: 16px;
	background: #fff;
}

.online .textCaution{
	padding-top: 8px;
	color: #666666;
}

.online_inner{
	width: 100%;
	padding:8px;
	padding-bottom:8px;
	overflow-x: scroll;
}

.onlineList{
	display: flex;
	width: max-content;
	gap: 16px;
}

.onlineList_item{
	width: 160px;
}

.onlineList_item .tmb{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 6px;
}

.onlineList_item .btn{
	margin: 8px auto 0;
	padding: 8px;
	font-size: 1.4rem;
}

.onlineList_item .icon-line{
	width: 23px;
	height: 22px;
}

/*-----------------------------------------------
モーダル（共通）
-----------------------------------------------*/
.modal{
	display: none;
}

.modalwindow{
	position: fixed;
	top:0; 
	left:0; 
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	width:100%; 
	height:100%;
	height:100vh;
	background:rgba(0,0,0,.75);
	z-index: 9998;
}

.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）*/
.modalwindowContents::-webkit-scrollbar{
	display:none;
}

.icon-close{
	position: absolute;
	right: 6px;
	top: 4px;
	width: 32px;
	height: 32px;
	background-color: #fff;
	cursor: pointer;
}

.modalwindowTitle{
	font-size: 20px;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

.modalwindowBody{
	background: #fff;
	padding: 8px;
}

.enrtyArea{
	padding: 24px 0px;
}

.enrtyAreaText{
	text-align: center;
	font-weight: bold;
	padding-bottom: 8px;
}

.noteTitle{
	font-weight: bold;
	padding-top: 5px;
}

.noteText{
	font-size: 12px;
	padding: 8px;
}

/*-----------------------------------------------
LINE登録用モーダル
-----------------------------------------------*/
.modalwindowContents-lineLogin{
	background: #06C755;
}

/*QRコード-PC用*/
.lineQR{
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 8px;
	background-color: #06C755;
}

/*-----------------------------------------------
離脱POP
-----------------------------------------------*/
.modal-hold .modalwindowTitle{
	margin: -16px -16px 0;
	padding: .75rem;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: left;
	color: #FFF;
	background: #e90fa7;
}

.userList_item{
	padding: 8px 0;
	display: flex;
}

.userList_item .userPic{
	width: 120px;
	height: 120px;
}

.userList_item .userDetails{
	width: calc(100% - 120px);
	padding: 0 8px;
}

.status-online{
	text-align: center;
	font-weight: bold;
	color: #e90fa7;	
}

.userList_item .icon{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 2px 0 0;
	padding: 0;
	background: #e90fa7;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.userList_item .userName{
	font-size: 12px;
	text-align: center;
}

.userList_item .icon-user,
.userList_item .icon-mapPin{
	width: 16px;
	height: 16px;
	background: #4a4a4a;
}

.userList_item .btn-line{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	padding: 8px;
	margin: 16px auto 0;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	color:#fff;
	background: #00b900;
	border-radius: 126px;
}

.userList_item .btn-line .icon-line{
	margin-right: 4px;
	width: 23px;
	height: 22px;
	background: #fff;
}
