/* Login Base */
#loginWrap {
	padding: 0px 0 50px;
}

#loginWrap section {
	width: 1000px;
	margin: 0px auto;
}

#loginWrap h1 {
    color: #192B5B;
    font-size: 36px;
    font-weight: bold;
    margin: 40px 0 80px;
    text-align: center;
}

#loginWrap h2 {
    color: #192B5B;
    margin: 0 0 40px;
    background: none;
    font-weight: bold;
    font-size: 24px;
    text-align: left;
}

#loginWrap h3 {
	font-size: 20px;
	color: #009139;
	font-weight: bold;
}


/* 注文履歴一覧 */
.historyContents {
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px;
    padding: 20px 0 0;
}

dl.historyData {
    color: #333; 
    display: flex;
    font-size: 16px;
    font-weight: 500;
    flex-flow: wrap;
    width: 555px;
}

dl.historyData dt {
    margin: 0 0 10px;
    width: 150px;
}

dl.historyData dd {
    width: 405px;
}

.DetailLinkBtn,.geoidLinkBtn {
    background: #192b5b;
    border: 1px solid #192b5b;
    border-radius: 4px;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    width: 235px;
}

.DetailLinkBtn:hover,.geoidLinkBtn:hover{
	opacity: 0.7;
}

button#moreHistoryBtn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px; 
    display: block;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto ;
    text-align: center;
    width: 150px;
}

#historyWrap{
	margin: 0 0 80px;
}

.historyListWrapper {
    border-bottom: 1px solid #ccc;
    margin: 0 0 20px;
}

.noListComment {
    text-align: center;
    margin: 0 0 80px;
}

/* 会員情報 */

#geoidWrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 30px;
    padding: 20px 0 0;	
}



/* logout */

#loginWrap section.myPageLogtoutWrapper{
	border-top: 5px solid #F0F0F0;
	padding: 80px 0 ;
	width: 100%;

}

.myPageLogoutBtn {
    background: #fff;
    border: 1px solid #192b5b;
    border-radius: 4px;
    color: #192b5b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    margin: auto;
    padding: 0;
    text-align: center;
    text-decoration: none;
    width: 235px;
}

.myPageLogoutBtn:hover{
	background: #EDF3FF;
}

/* Login Content */

.loginComment {
	margin: 25px 25px 30px;
	font-size: 14px;
	line-height: 1.5;
}

.loginComment.center {
	text-align: center;
}

.loginComment.right {
	text-align: right;
}

.loginComment.only {
	padding: 100px 0;
	font-size: 24px;
}


.loginGrayBtn {
	display: block;
	width: 450px;
	height: 40px;
	margin: 20px auto 0;
	background: #E5E5E5;
	box-shadow: 1px 4px 0 #C7CEC7;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	color: #000;
}

.loginNavyBtn {
	display: block;
	width: 450px;
	height: 40px;
	margin: 20px auto 0;
	background: #36467d;
	box-shadow: 1px 4px 0 #1a295c;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	color: #fff;
}

.loginAttention {
	font-size: 14px;
	text-align: center;
}


/* Login Form */
#loginWrap form{
	width: 750px;
	margin: 0 auto 10px;
	border-top: 1px dotted #333;
}

#loginWrap form fieldset{
	display:table;
	border:none;
	border-bottom:1px dotted #333;
}

#loginWrap form fieldset.hideField{
	display: none;
}

#loginWrap form fieldset label{
	display:table-cell;
	width:260px;
	box-sizing:border-box;
	padding:10px 20px 10px 70px;
	vertical-align:middle;
	background:#eee;
}

#loginWrap form fieldset label.required{
	padding-left:20px;
}

#loginWrap form fieldset label.required span{
	padding-left:50px;
	font-size: 14px;
	color: #333;
}

#loginWrap form fieldset label.required:before{
	display:inline-block;
	content:"\5fc5\9808";
	width:40px;
	margin-right:10px;
	padding:2px 0;
	background:#ff4e00;
	color:#fff;
	font-size:12px;
	text-align:center;
}

.formRightWrap{
	display:table-cell;
	padding:10px 20px;
	vertical-align:middle;
	width: 450px;
}

.formRightWrap div {
	clear: both;
	font-size: 14px;
}

#loginWrap form fieldset div.formRightWrap label {
	background: none;
	width: 450px;
	display: table;
	padding-left: 0px;
}

#loginWrap form fieldset div.formRightWrap label input[type=radio] {
	display: table-cell;
	width: 10px;
}

.loginForm input[type=text],
.loginForm input[type=password] {
	border: 1px solid #d8d8d8;
	font-size: 16px;
	line-height: 24px;
	box-shadow: 1px 1px 0 #a3a3a3;
	border-radius: 0!important;
	width: 450px;
	padding: 0 5px;
	margin: 0;
}

.loginForm input[type=submit],
.loginInputBtn {
	display:block;
	width:475px;
	height:80px;
	margin:20px auto 40px;
	border:0;
	border-radius:12px;
	padding:0;
	background:#EB4201;
	box-shadow:0 5px 0 #A40000;
	font-size:32px;
	text-align:center;
	text-decoration:none;
	line-height:80px;
	color:#fff;
	cursor: pointer;
}

.loginForm input[type=submit]::after,
.loginInputBtn::after {
	display:inline-block;
	position:relative;
	top: -2px;
	left:10px;
	content:"";
	width: 16px;
	height: 16px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
