@charset "shift-jis";

:root {
	--bodyColor:#fafafa;				/*bodyの背景色*/
	--mainColor:#fff;					/*メインの背景色*/
	--subColor:#fff497;				/*ヘッダー/フッターなどの背景色*/
	--accentColor:#9877fc;				/*アクセントカラー*/

	--btnColor-main:#9877fc;			/*ボタンの背景色など*/
	--btnColor-sub:#fff;				/*ボタンの文字など*/

	--btnColor-main-negativ:#e0e0e0;	/*disableボタンの背景色など*/
	--btnColor-sub-negativ:#919191;	/*disableボタンの文字など*/

	--navigationColor-main:#b6b45d;	/*ナビゲーションの背景色など*/
	--navigationColor-sub:#9877fc;		/*ナビゲーションの文字など*/

	--textColor-main:#4e5261;			/*文字色*/
	--textLinkColor-main:#000;			/*テキストリンク*/
	--borderColor-main:#e5e5e5;		/*ボーダー*/

	--mailStatusColor-main:#18c5db;	/*未読*/
	--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);
}

.hide-sp{
	display: none;
}

/*PC用設定*/
@media ( min-width : 980px ){
	.hide-pc{
		display: none;
	}
	.show-pc{
		display: block;
	}
}
/*----------------------------------------------
コンテナ
-----------------------------------------------*/

@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%;
}

.steps{
	display: block;
	padding: 0 .5em;
	text-align: center;
	color: var(--mainColor);
	background: var(--subColor);
	border-radius: 128px;
}

.msg{
	margin: 16px auto;
	padding: 16px;
	font-weight: bold;
	text-align: center;
	background: #fafafa;
	border-radius: 8px;
}

.msg-confirm{
	background: #edffe8;
}

.msg-completed{
	background: #eef8ff;
}

.msg-error{
	color: #fff;
	background: #db312b;
}

.msg-coinPurchase{
	padding: 16px;
	font-size: 1.3rem;
	text-align: center;
	background: #ffeec3;
}

.msg-caution{
	color: #ff0000;
	text-decoration: underline;
	font-weight: bold;
}

/*----------------------------------------------
ボタン系
-----------------------------------------------*/
.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(--tnColor-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;
}

/*ページネーション*/
.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(225deg);
	transform: rotate(225deg);
}

.show.is-active::after{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.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;
}

.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-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');
}

/*-----------------------------------------------
モーダルウィンドウ
-----------------------------------------------*/
#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);
}

/*LINE登録用モーダル*/
#modal.forNotification .modalwindowContents-line{
	width: 90%;
	max-width: 420px;
	padding: 16px;
	border: 1px solid #fff;
}

#modal.forNotification  .modalwindowContents-line .title{
	padding: 8px 0 16px;
	font-size: 2rem;
	color: #06C755;
	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid #d3d3d3;
}

#modal.forNotification .modalwindowContents-line .logo{
	display: block;
	width: 160px;
	margin: 16px auto;
}

#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;
}

/*----------------------------------------------
汎用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);
}

.btn-header{
	margin: 0;
	padding: .5em;
	width: 100%;
	height: 32px;
	font-size: 1.2rem;
	color:var(--btnColor-main);
	background:var(--btnColor-sub);
	border: none;
}

.headerInner_right,.headerInner_center,.headerInner_left{
	height: 100%;
	/*テキスト上下左右中央配置*/
	display: grid;
	place-items: center;
}

.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);
}

/*-----------------------------------------------
フッター
-----------------------------------------------*/
footer{
	width: 100%;
}

#nonMemberPage  footer .container{
	color: var(--textColor-main);
	background: var(--mainColor);
}

/*-----------------------------------------------
タブメニュー
-----------------------------------------------*/
#tabMenuList{
	position: sticky;
	top: 56px;
	background: var(--mainColor);
	box-shadow: 0px 2px 3px var(--borderColor-main);
	z-index: 999;
}

#tabMenuList .list_item,
#tabMenuList .list_item:last-child{
	border-bottom: none;
	border-right: none;
	padding: 4px;
}

#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:var(--navigationColor-sub);
}

#tabMenuList .icon{
	margin: 0 auto 8px;
	background-color: var(--navigationColor-main);
}

#tabMenuList .list_item_link.active .icon{
	background-color:var(--navigationColor-sub);
}

/*-----------------------------------------------
ボトムナビゲーション
-----------------------------------------------*/
.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: 290px;
	padding: 0 0 0 32px;
}

/*-----------------------------------------------
ログイン前TOP
-----------------------------------------------*/
.contentsWapper{
	width: 100%;
	min-height: 100dvh;
	background-size: cover;
	background-position: top center;
}

.entryArea{
	margin: 50% auto 24px;
	padding: 32px 16px;
	width: 96%;
	text-align: center;
	color: var(--textColor-main);
	background: rgba(255,255,255,.85);
	border-radius: 8px;
	border: 2px solid #fff;
	box-shadow: 0 0 8px #fff;
	position: relative;
	z-index: 999;
}

.entryArea .textLink{
	color: #888888;
}

.entryArea .btn{
	margin: 24px auto;
	width: 100%;
	overflow: hidden;
}

.btn#google_login{
	padding-left: 8px;
	padding-right: 8px;
	font-weight: bold;
	font-size: 14px;
	color: #000;
	background: #fff;
	box-shadow: 0 0 6px #ddd;
}

.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{
	background: #06C755;
	border-radius: 2em;
}

.icon-line{
	display: inline-block;
	margin-right: 4px;
	width: 32px;
	height: 32px;
	vertical-align: middle;
	background: url(../img/line.png);
	background-size: cover;
}

#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;
}

#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;
}

/*-----------------------------------------------
年齢確認画面(ログイン前)
-----------------------------------------------*/
#ageAuthPageContentsWapper{
	background-image:url(../img/bg-ageAuthPageContentsWapper.jpg);
}

#ageAuthPageContentsWapper .mainVisual{
	display: block;
	margin: 0 auto;
	object-fit: cover;
}

#ageAuthPageContentsWapper .container-main{
	background: none;
}

/*-----------------------------------------------
ログイン前TOP
-----------------------------------------------*/
#topPageContentsWapper{
	background-image:url(../img/bg-topPageContentsWapper.jpg);
}

#topPageContentsWapper .headerInner{
	background: none;
}

#topPageContentsWapper .headerInner_left{
	padding: 0;
	place-items: inherit;
}

#topPageContentsWapper .headerInner_left .logo{
	display: block;
	width: 120px;
	object-fit: cover;
}

#topPageContentsWapper .headerInner_right .toLogin{
	color: var(--btnColor-main);
}

#topPageContentsWapper .headerInner_right .toLogin .icon{
	margin: 0 auto;
	background-color: var(--btnColor-main);
}

#topPageContentsWapper .container-main{
	min-height: calc(100dvh - 155px);
	background: none;
}

/*-----------------------------------------------
新規登録
-----------------------------------------------*/
#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;
	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: #d1a937;
}

.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;
}

/*-----------------------------------------------
プロフィール詳細
-----------------------------------------------*/
/*プロフ写真*/
#tmbList{
	width: 100%;
	margin: 0 auto 16px;
}

#tmbList .tmbList_item:nth-child(1){
	width: 100%;
	margin: 16px auto;
}

.tmbList_item .tmb{
	width: 80px;
	height: 80px;
	margin: 0px auto;
}

.tmbList_item:nth-child(1) .tmb{
	width: 160px;
	height: 160px;
}

#modalwindowContents .tmb{
	width: 90%;
	height: auto;
	border-radius: 0;
	margin: 0 auto;
}

#userProfile .name{
	width: 100%;
	max-width: 100%;
	margin: 16px auto 0;
	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;
}

.btn .icon{
	display: inline-block;
	vertical-align: middle;
	background-color: var(--btnColor-sub);
}

/*-----------------------------------------------
トーク
-----------------------------------------------*/
.partnerName{
	display: block;
	width: 160px;
	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: 0;
	margin-left: calc(100% - 140px);
	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;
}

/*Android版LINE内部ブラウザ対応*/
#forAndroid.container-main{
	padding-bottom: 200px;
}

#forAndroid #messageSendForm{
	width: 100%;
	position: static;
}

/*-----------------------------------------------
お知らせ一覧関連
-----------------------------------------------*/
.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: #f3ff8b;
}

.paymentLogo{
	display: block;
	width: 50%;
}

/*-----------------------------------------------
マイメニュー
-----------------------------------------------*/
#userProfile .userProfileDetails{
	margin-bottom: 16px;
	text-align: center;
	font-size: 1.2rem;
	color: #777;
}

#myMenuList{
	margin: 16px auto;
}

#myMenuList .list_item{
	border-bottom: none;
}

#myMenuList .list_item .list_item_link{
	display: block;
	width: 100%;
	height: 72px;
	text-align: center;
	font-weight: bold;
	font-size: 1.3rem;
	color:var(--btnColor-main) ;
}

#myMenuList .icon{
	margin: 0 auto 8px;
	background-color: var(--btnColor-main);
}

#mySubMenuList .list_item{
	padding: 0;
}

#mySubMenuList .list_item_link{
	padding: 12px 8px;
}

/*-----------------------------------------------
写真変更
-----------------------------------------------*/
#editPicForm{
	padding:0;
}

.userPic{
	position: relative;
}

#mainPic{
	width: 160px;
	height: 160px;
}

.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;
}

.subPicEditArea .userPic .btn-changePic,
.subPicEditArea .userPic .btn-undo{
	width: 32px;
	height: 32px;
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	cursor: pointer;
}

.subPicEditArea .userPic .btn-changePic{
	right: calc(50% - 48px);
}

.subPicEditArea .userPic .btn-undo{
	left: calc(50% - 48px);
}

/*-----------------------------------------------
お気に入り一覧
-----------------------------------------------*/
#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;
}