@charset "shift-jis";

:root {
	--bodyColor:#fafafa;				/*bodyの背景色*/
	--mainColor:#fff;					/*メインの背景色*/
	--subColor:#170d1f;					/*ヘッダー/フッターなどの背景色*/
	--accentColor:#00b3ff;				/*アクセントカラー*/

	--btnColor-main:#00b3ff;			/*ボタンの背景色など*/
	--btnColor-sub:#fff;				/*ボタンの文字など*/

	--btnColor-main-negativ:#e0e0e0;	/*disableボタンの背景色など*/
	--btnColor-sub-negativ:#919191;	/*disableボタンの文字など*/

	--navigationColor-main:#afafaf;	/*ナビゲーションの背景色など*/
	--navigationColor-sub:#00b3ff;		/*ナビゲーションの文字など*/

	--textColor-main:#000;				/*文字色*/
	--textLinkColor-main:#051a33;			/*テキストリンク*/
	--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;
}

p{
	font-size: 1.5rem;
	line-height: 1.75;
}

a{
	color: var(--textLinkColor-main);
}

/*----------------------------------------------
コンテナ
-----------------------------------------------*/

@media ( min-width : 980px ){
	.container{
		width: 480px;
	}
}

/*----------------------------------------------
リスト
-----------------------------------------------*/
.list{
	margin: 0 auto;
	width: 100%;
}

.list_item{
	padding: 8px;
	border-bottom: 1px solid var(--borderColor-main);
}

.list_item .item_left{
	width: 80px;
	height: 80px;
}

.list_item .item_right{
	padding: 0 16px 0 8px;
	width: calc(100% - 80px);
}

/*----------------------------------------------
表
-----------------------------------------------*/
.baseTable{
	table-layout: fixed;
	width: 100%;
	margin: 8px auto 16px;
	font-size: 1.3rem;
}

.baseTable th{
	width: 200px;
	padding: .5em;
	text-align: left;
	background: #fafdff;
	border-bottom: 1px solid var(--borderColor-main);
}

.baseTable td{
	padding: .2em;
	text-align: center;
	border-bottom: 1px solid var(--borderColor-main);
}

/*----------------------------------------------
見出し系
-----------------------------------------------*/
.contentsTitle{
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0 auto 16px;
}

/*----------------------------------------------
テキスト系
-----------------------------------------------*/
/*年月日時分表示*/
.date{
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 4px;
}

/*メール状態*/
.mailStatus{
	font-size: 1.1rem;
}

.unread{
	color:var(--mailStatusColor-main);
}

.read{
	color:var(--mailStatusColor-sub);
}

/*未読バッジ*/
.unreadCountBadge{
	position: absolute;
	top: 4px;
	right: 4px;
	display: block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 1rem;
	color:var(--btnColor-sub);
	background: var(--mailStatusColor-main);
	border-radius: 50%;
}

.msg{
	margin: 16px auto;
	padding: 16px;
	font-weight: bold;
	text-align: center;
	background: #fafafa;
	border-radius: 8px;
}

.msg-confirm{
	background: #edffe8;
}

.msg-completed{
	background: #87ceff;
}

.msg-error{
	color: #fff;
	background: #ff706b;
}

.msg-coinPurchase{
	padding: 16px;
	font-size: 1.3rem;
	text-align: center;
	background: #ffeec3;
}

/*----------------------------------------------
ボタン系
-----------------------------------------------*/
.btn{
	width: 72%;
	margin: 32px auto;
	padding: 12px;
	font-size: 1.5rem;
	color:var(--btnColor-sub);
	background: var(--btnColor-main);
	border-radius: 24px;
	position: relative;
}

.btn.cancel,.btn.delete{
	color: var(--btnColor-sub-negativ);
	background: var(--btnColor-main-negativ);
}

#scrollToTop{
	width: 40px;
	height: 40px;
	right: 12px;
	bottom: 64px;
	background: url(../img/svg-arrow_circle_up.svg);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 999;
}

/*ページネーション*/
.pagination_item.nowPage{
	background: #c5d1ea;
}

/*スライドトグル用*/
.show{
	width: 100%;
	margin: 0 auto;
	padding: 8px;
	color: var(--textColor-main);
	text-align: left;
	background: none;
	border: none;
	border-radius: 0;
	position: relative;
	cursor: pointer;
}

.show::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 6px);
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--textColor-main);
	border-bottom: 1px solid var(--textColor-main);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.show.is-active::after{
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.btn-showMore{
	width: 60%;
	margin: 16px auto;
	padding: 4px;
	font-size: 1.5rem;
	color:var(--btnColor-sub);
	background: var(--btnColor-main);
}

.btn-showMore::before{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	left: 25%;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--btnColor-main);
	border-bottom: 2px solid var(--btnColor-main);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*-----------------------------------------------
アイコン
-----------------------------------------------*/
.icon{
	display: block;
	width: 24px;
	height: 24px;
	-webkit-mask-size: cover;
	mask-size: cover;
}

.btn .icon{
	display: inline-block;
	vertical-align: bottom;
	background-color: var(--btnColor-sub);
}

.icon-home{
	-webkit-mask-image: url('../img/svg-home.svg');
	mask-image: url('../img/svg-home.svg');
}

.icon-search{
	-webkit-mask-image: url('../img/svg-search.svg');
	mask-image: url('../img/svg-search.svg');
}

.icon-chat{
	-webkit-mask-image: url('../img/svg-chat.svg');
	mask-image: url('../img/svg-chat.svg');
}

.icon-coin{
	-webkit-mask-image: url('../img/svg-coin.svg');
	mask-image: url('../img/svg-coin.svg');
}

.icon-coin{
	-webkit-mask-image: url('../img/svg-point.svg');
	mask-image: url('../img/svg-point.svg');
}

.icon-user{
	-webkit-mask-image: url('../img/svg-user.svg');
	mask-image: url('../img/svg-user.svg');
}

.icon-heart{
	-webkit-mask-image: url('../img/svg-heart.svg');
	mask-image: url('../img/svg-heart.svg');
}

.icon-crossmark{
	-webkit-mask-image: url('../img/svg-crossmark.svg');
	mask-image: url('../img/svg-crossmark.svg');
}

.icon-exclamation{
	-webkit-mask-image: url('../img/svg-exclamation.svg');
	mask-image: url('../img/svg-exclamation.svg');
}

.icon-info{
	-webkit-mask-image: url('../img/svg-info.svg');
	mask-image: url('../img/svg-info.svg');
}

.icon-camera{
	-webkit-mask-image: url('../img/svg-camera.svg');
	mask-image: url('../img/svg-camera.svg');
}

.icon-edit{
	-webkit-mask-image: url('../img/svg-edit.svg');
	mask-image: url('../img/svg-edit.svg');
}

.icon-mail{
	-webkit-mask-image: url('../img/svg-mail.svg');
	mask-image: url('../img/svg-mail.svg');
}

.icon-question{
	-webkit-mask-image: url('../img/svg-question.svg');
	mask-image: url('../img/svg-question.svg');
}

.icon-menuCircle{
	-webkit-mask-image: url('../img/svg-menuCircle.svg');
	mask-image: url('../img/svg-menuCircle.svg');
}

.icon-smartphone{
	-webkit-mask-image: url('../img/svg-smartphone.svg');
	mask-image: url('../img/svg-smartphone.svg');
}

.icon-send{
	-webkit-mask-image: url('../img/svg-send.svg');
	mask-image: url('../img/svg-send.svg');
}

.icon-close{
	-webkit-mask-image: url('../img/svg-crossmark.svg');
	mask-image: url('../img/svg-crossmark.svg');
}

.icon-reload{
	-webkit-mask-image: url('../img/svg-reload.svg');
	mask-image: url('../img/svg-reload.svg');
}

.icon-leftArrow{
	-webkit-mask-image: url('../img/svg-leftArrow.svg');
	mask-image: url('../img/svg-leftArrow.svg');
}

.icon-searchForm{
	-webkit-mask-image: url('../img/svg-searchForm.svg');
	mask-image: url('../img/svg-searchForm.svg');
}

/*-----------------------------------------------
モーダルウィンドウ
-----------------------------------------------*/
#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;
}

#close{
	text-align: center;
	color: #fff;
	cursor: pointer;
}

#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 .contentsTitle{
	border-bottom: 1px solid var(--borderColor-main);
}

#modal.forNotification .modalwindowContents .icon{
	position: absolute;
	right: 4px;
	top: 4px;
	width: 32px;
	height: 32px;
	background-color: var(--btnColor-sub-negativ);
}

/*----------------------------------------------
汎用BOX
-----------------------------------------------*/
.inBox{
	padding: 16px;
	box-shadow: 0 0 16px #e2e2e2;
	border-radius: 8px;
}

/*----------------------------------------------
ヘッダー
-----------------------------------------------*/
header{
	width: 100%;
	top: 0;
	position: fixed;
	z-index: 996;
}

/*ログイン前*/
#nonMemberPage  header{
	position: static;
}

.headerInner{
	padding: 0 8px;
	height: 56px;
	background: var(--subColor);
	border-bottom: 2px solid var(--borderColor-main);
}

.headerInner_right,.headerInner_center,.headerInner_left{
	height: 100%;
	/*テキスト上下左右中央配置*/
	display: grid;
	place-items: center;
}

.btn-header{
	margin: 0 ;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: .8rem;
	color:var(--accentColor);
	background: none;
	border: none;
	border-radius: 0;
}

.btn-header .icon{
	display: block;
	margin: 0 auto;
	background-color: var(--accentColor);
}

.btn-header.pageBack .icon{
	width: 30px;
	height: 30px;
	margin: 4px auto;
}

.btnHolizontalBox .btn-header{
	width: 50%;
}

.pageTitle{
	color: var(--accentColor);
	font-weight: bold;
	font-size: 1.5rem;
}

/*-----------------------------------------------
メイン
-----------------------------------------------*/
.container-main{
	padding-top: 56px;
	padding-bottom: 56px;
	min-height: 100dvh;
	background: var(--mainColor);
}

/*ログイン前他*/
#nonMemberPage .container-main{
	padding-top: 0;
	padding-bottom: 0;
	min-height: calc(100dvh - 101px);
}

/*ログイン前TOP*/
#nonMemberPage .topPageContainer-main{
	min-height:calc(100dvh - 47px);
	background: url(../img/bg.jpg);
	background-size: cover;
	position: relative;
}

/*-----------------------------------------------
フッター
-----------------------------------------------*/
footer{
	width: 100%;
}

#nonMemberPage  footer .container{
	background: var(--subColor);
}

#nonMemberPage .copyright{
	color: #fff;
}

/*-----------------------------------------------
タブメニュー
-----------------------------------------------*/
#tabMenuList{
	background: #FCFCFC;
}

#tabMenuList .list_item,
#tabMenuList .list_item:last-child{
	border-bottom: none;
	border-right: none;
	padding: 8px;
}

#tabMenuList .list_item_link{
	display: block;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	color: var(--navigationColor-main);
	position: relative;
}

#tabMenuList .list_item_link.active{
	color:#ff41a5;
}

#tabMenuList .icon{
	margin: 0 auto 8px;
	background-color: var(--navigationColor-main);
}

#tabMenuList .list_item_link.active .icon{
	background-color:#ff41a5;
}

/*-----------------------------------------------
ボトムナビゲーション
-----------------------------------------------*/
.bottomNavigationArea{
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	height: 56px;
	z-index: 996;
}

.bottomNavigation{
	background: var(--subColor);
}

.bottomNavigation_item{
	display: block;
	flex: 1;
	height: 56px;
	text-align: center;
	font-size: 1rem;
}

.bottomNavigation_item:last-child{
	border:none;
}

.bottomNavigation_item_link{
	display: block;
	padding: 6px 4px 0 4px;
	width: 100%;
	height: 100%;
	font-weight: bold;
	color:var(--navigationColor-main);
	position:relative;
}

.bottomNavigation_item_link .icon{
	margin: 4px auto;
	background-color:var(--navigationColor-main);
}

.bottomNavigation_item_link.active{
	color: var(--navigationColor-sub);
}

.bottomNavigation_item_link.active .icon{
	background-color: var(--navigationColor-sub);
}

/*-----------------------------------------------
入力フォーム
-----------------------------------------------*/
.altRadioBtn.female,.altRadioBtn.male,.altRadioBtn.both{
	width: 32%;
	border-radius: 24px;
}

.altCheckBox {
	width: auto;
	padding: 0 0 0 24px;
	color: #fff;
}

.altCheckBox:after {
	border: 2px solid #fff;
	border-radius: 0;
}

/*-----------------------------------------------
ログイン前TOP
-----------------------------------------------*/
.btn-login{
	display: block;
	position: absolute;
	top: 2%;
	right: 2%;
	width: 24%;
	max-width: 120px;
	margin: 0;
	padding: 2px;
	font-weight: normal;
	color:#cfcfcf;
	background: none;
	border: 1px solid #cfcfcf;
}

.logo{
	display: block;
	margin: 8px auto 0;
	width: 96%;
	max-width: 480px;
	object-fit: cover;
}

.entryArea{
	width: 96%;
	max-width: 400px;
	margin: 0 auto 16px;
	padding: 32px 24px;
	color: #fff;
	background: linear-gradient(145deg, rgb(11 42 174 / 65%), rgb(125 2 60 / 75%));
	border: 1px solid #fff;
	border-radius: 8px;
}

.entryArea input[type="checkbox"]:checked + .altCheckBox{
	color: var(--btnColor-main);
}

input[type="checkbox"]:checked + .altCheckBox:before,
input[type="checkbox"]:checked + .altCheckBox:after{
	border-color: var(--btnColor-main);
}

.btnEntry{
	margin: 8px auto 32px;
	width: 100%;
	overflow: hidden;
}

.btnEntry.disabled:after{
	display: none;
}

.btnEntry.disabled::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.45);
	position: absolute;
	top: 0;
	left: 0;
}

.btnEntry#google_login{
	padding-left: 8px;
	padding-right: 8px;
	font-weight: bold;
	font-size: 14px;
	color: #000;
	background: #fff;
	border: 1px solid var(--borderColor-main);
}

.icon-google{
	display: inline-block;
	margin-right: 24px;
	width: 18px;
    height: 18px;
	vertical-align: middle;
	background: url(../img/svg-google.svg);
	background-size: cover;
}

.btnEntry#line_login{
	padding-left: 8px;
	padding-right: 8px;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	background: #06C755;
	border: 1px solid var(--borderColor-main);
	border-radius: 128px;
}

.icon-line{
	display: inline-block;
	margin-right: 18px;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url(../img/svg-line.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.entryArea .memo{
	background: none;
	border: none;
}


#nonMemberPage .footerLinkList .list_item{
	padding: 0;
	width: 33.333%;
	border-bottom: none;
}

#nonMemberPage .footerLinkList .list_item_link{
	display: block;
	width: 100%;
	padding: 16px 0;
	font-size: 1rem;
	text-align: center;
	color: #fff;
}

/*LINE登録用モーダル*/
#modal-lineLogin{
	display: none;
}

#modal-lineLogin.forNotification .modalwindowContents{
	width: 90%;
	max-width: 480px;
	max-height: 80vh;
	overflow-y: scroll;
	margin: 0 auto;
	padding: 16px;
	background: #06C755;
	border-radius: 8px;
	position: relative;
	-ms-overflow-style: none;/*スクロールバー非表示（IE・Edge）*/
	scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
}

#modal-lineLogin.forNotification .modalwindowContents .icon{
	position: absolute;
	right: 4px;
	top: 4px;
	width: 32px;
	height: 32px;
	background-color: #fff;
}

.lineTitle{
	font-size: 1.75rem;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

.lineSubTitle{
	font-size: 1.25rem;
	color: #000;
	text-align: center;
	font-weight: bold;
	padding-bottom: 8px;
}

.lineTextArea{
	background-color:var(--mainColor);
	padding: 8px;
}

.lineBtnArea{
	padding: 24px 0px;
}

/*QRコード-PC用*/
.lineQR{
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 8px;
	background-color: #06C755;
}

/*ボタン-SP用*/
.lineBtn{
	width: 80%;
	margin: 0px auto;
	padding: 8px 16px;
	font-size: 1.25rem;
	color:#fff;
	background: #06C755;
	border-radius: 32px;
	border: double 4px;
	position: relative;
}

.icon-lineLogin{
	display: inline-block;
	margin-right: 16px;
	width: 32px;
	height: 32px;
	vertical-align: middle;
	background: url(../img/line.png);
	background-size: cover;
}

.lineCaution{
	background-color: #ffffff;
	border: 3px double #06C755;
}

.lineCautionTitle{
	font-size: 1.25rem;
	font-weight: bold;
	padding-top: 5px;
}

.lineCautionMemo{
	font-size: 1rem;
	padding: 16px 8px;
}

/*-----------------------------------------------
新規登録
-----------------------------------------------*/
#registrationForm .altRadioBtn.female,
#registrationForm .altRadioBtn.male,
#registrationForm .prefcture,
#registrationForm .city{
	width: 48%;
}

/*-----------------------------------------------
年齢確認
-----------------------------------------------*/
#aboutAgeVerification{
	margin-bottom: 16px;
	padding: 0 16px;
	background: #fafafa;
	border-radius: 8px;
}

#aboutAgeVerification .detail{
	display: none;
	padding: 16px 0;
	font-size: 1.5rem;
	background: #fafafa;
	border: var(--borderColor-main);
	border-top: 1px solid var(--borderColor-main);
}

#aboutAgeVerification .text-caution{
	font-size: 1.2rem;
	font-weight: bold;
}

#aboutAgeVerification .steps{
	margin: 16px 0 8px;
	width: 20%;
}

.ageVerificationForm{
	padding: 24px;
}

/*-----------------------------------------------
プロフィール関連
-----------------------------------------------*/
.tmb{
	display: block;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.name,.area,.age{
	max-width: 33%;
	font-size: 1.2rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.female{
	color: #d00060;
}

.male{
	color: #0068d0;
}

.currentPt{
	color: #FF9900;
}

.comment{
	font-size: 1.4rem;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/*-----------------------------------------------
会員一覧関連
-----------------------------------------------*/
.item_right.details{
	padding: 0 16px 0 8px;
	width: calc(100% - 80px);
}

/*検索（画像一覧）*/
#sameAreaUserList .list_item{
	width: 33.333%;
	border: none;
}

/*-----------------------------------------------
プロフィール詳細
-----------------------------------------------*/
/*プロフ写真*/
#userProfile .tmb{
	width: 160px;
	height: 160px;
	margin: 24px auto;
}

.modalwindowContents .tmb{
	width: 90%;
	height: auto;
	border-radius: 0;
	margin: 0 auto;
}

#userProfile .name{
	width: 100%;
	max-width: 100%;
	margin: 16px auto;
	text-align: center;
	font-weight: bold;
	font-size: 1.7rem;
}

/*コメント*/
#userProfile .balloon{
	width: 90%;
	margin: 0 auto;
	background: #f9f9f9;
	border-radius: 8px;
	position: relative;
}

#userProfile .balloon .comment{
	height: 80px;
	padding: 8px;
	overflow-y: scroll;
    white-space: normal;
    text-overflow: unset;
}

/*-----------------------------------------------
トーク
-----------------------------------------------*/
.partnerName{
	display: block;
	width: 100%;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.messageList_item{
	margin-bottom: 16px;
	padding: 8px;
}

.messageArea{
	padding-left: calc(100% - 80%);
	width: 100%;
}

.messageArea .date{
	text-align: right;
}

.messageList_item .balloon{
	margin: 0 0 8px 8px;
	padding:8px;
	background: #fafafa;
	border-radius: 8px;
	position: relative;
}

.messageList_item .balloon:before{
	display: block;
	content: " ";
	width: 12px;
	height: 12px;
	background: #fafafa;
	transform: rotate(45deg);
	position: absolute;
	top: 16px;
	right: -6px;
}

.messageList_item.fromPartner .tmb{
	width: 64px;
	height: 64px;
}

.messageList_item.fromPartner .balloon:before{
	left: -6px;
}

.messageList_item.fromPartner .messageArea{
	padding-left: 0;
}

.messageList_item.fromPartner .messageArea .date{
	text-align: left;
	margin-left: 8px;
}

.messageList_item .messageArea .tmb{
	margin-left: calc(100% - 96px);
	width: 96px;
	height: auto;
	border-radius: 0;
}

.messageList_item.fromPartner .messageArea .tmb{
	width: 96px;
	height: auto;
	margin-left: 8px;
	border-radius: 0;
}

.btn-viewPic{
	margin: 8px 0;
	width: 140px;
	padding: 4px 8px;
}

#messageSendForm{
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 996;
}

#messageSendForm .container{
	padding: 8px;
	background: var(--subColor);
}

#messageSendForm .btn-upload{
	display: block;
	width: 40px;
	height: 40px;
	padding: 8px;
	border-radius: 50%;
	background: var(--btnColor-main);
	position: relative;
}

.btn-upload .icon{
	background-color: var(--btnColor-sub);
}

.btn-upload .icon.fileUpload{
	-webkit-mask-image: url('../img/svg-plus.svg');
	mask-image: url('../img/svg-plus.svg');
}

.btn-upload .icon.fileUpload.active{
	-webkit-mask-image: url('../img/svg-clip.svg');
	mask-image: url('../img/svg-clip.svg');
}

#messageSendForm input[type="file"]{
	display: none;
}

#messageSendForm textarea{
	width: 65%;
	margin: 0 4px;
}

#messageSendForm .btn-send{
	margin: 0;
	width: 96px;
}

/*-----------------------------------------------
お知らせ一覧関連
-----------------------------------------------*/
.infomationTitle{
	display: inline-block;
	width: 85%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/*-----------------------------------------------
コイン購入
-----------------------------------------------*/
#paymentList{
	margin-top: 16px;
}

#paymentList .list_item{
	margin-bottom: 16px;
	padding: 0;
	width: 48%;
	border: none;
	border: 2px solid var(--borderColor-main);
	border-radius: 8px;
	overflow: hidden;
}

.paymentDiscription{
	padding: 8px;
}

.paymentName{
	margin: -8px -8px 8px -8px;
	padding: 8px;
	font-weight: bold;
	font-size: 1.4rem;
	background: #e4b746;
}

.paymentLogo{
	display: block;
	width: 50%;
}

/*-----------------------------------------------
マイメニュー
-----------------------------------------------*/
#userProfile .btn.toInformation{
	margin: 0;
	width: 40%;
	padding:20px 0;
	background: #ff41a5;
	border-radius: 8px;
}

#userProfile .currentPtBox{
	width: 40%;
	height: 64px;
	padding: 2px 8px;
	text-align: center;
	border:1px solid var(--borderColor-main);
	border-radius: 8px;
}

#userProfile .currentPtBox .itemTitle{
	border-bottom:1px solid var(--borderColor-main);
}

#myMenuList{
	margin: 16px auto;
	width: 100%;
}

#myMenuList .list_item{
	width: 100%;
}

#myMenuList .list_item .list_item_link{
	display: block;
	width: 100%;
	padding: 8px 16px;
	font-weight: bold;
	font-size: 1.3rem;
	color:var(--textLinkColor-main);
}

#myMenuList .icon{
	display: inline-block;
	vertical-align: bottom;
	margin-right: 16px;
	background-color: var(--textLinkColor-main);
}

/*-----------------------------------------------
写真変更
-----------------------------------------------*/
#editPicForm{
	padding:0;
}

.userPic{
	position: relative;
}

#mainPic{
	width: 240px;
	height: 240px;
}

.userPic .btn-changePic,
.userPic .btn-undo{
	display: block;
	position: absolute;
	bottom: -10px;
	width: 40px;
	height: 40px;
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	cursor: pointer;
}

.userPic .btn-changePic{
	right: calc(50% - 72px);
	background-image: url(../img/svg-add.svg);
	background-color:var(--btnColor-main);
}

.userPic .btn-undo{
	left: calc(50% - 72px);
	background-image: url(../img/svg-undo.svg);
	background-color:#adadcf;
}

/*-----------------------------------------------
お気に入り一覧
-----------------------------------------------*/
#favoriteUserList .list_item{
	width: 100%;
}

/*-----------------------------------------------
ヘルプメニュ-
-----------------------------------------------*/
#helpMenuList .list_item_link{
	padding: 8px 0;
}

/*-----------------------------------------------
その他メニュー
-----------------------------------------------*/
#otherMenuList .list_item_link{
	padding: 8px 0;
}

.otherMenuTitle{
	width: 95%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}