@charset "UTF-8";

/* =============================================================================
Reset
============================================================================= */
body {
	font-family:"メイリオ","MSゴシック",sans-serif;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	line-height: 1.8;
	color: #5a5858;
}
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, figure, figcaption {
	margin: 0; padding: 0;
}
input, textarea {
	margin: 0; font-size: 100%;
}
label {
	cursor: pointer;
}
table {
	border-collapse: collapse; border-spacing: 0;
}
fieldset, img {
	border: 0;
}
img {
	max-width: 100%;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal; font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%; font-weight: normal;
}
q:after, q:before {
	content:'';
}
a, input {
	outline: none;
}

/*
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
*/

.chkbox input[type=checkbox] {
	display: none;
}

.radio input[type="radio"] {
	display: none;
}

input, textarea {
	border-radius: 0; font-family:"メイリオ","MSゴシック",sans-serif;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


/* =============================================================================
Base
============================================================================= */
.clear {
	clear: both;
}
.block {
	display: block;
}
.hide {
	display: none;
}

.row {
	width:100%;
}
.row:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}

a:link {
	color: #0000ff; text-decoration: none;
}
a:visited {
	color: #0000ff; text-decoration: none;
}
a:hover {
	color: #ff6600; text-decoration: none;
}
a:active {
	color: #0000ff; text-decoration: none;
}
a:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
	opacity: 0.75;
	text-decoration: none;
	-moz-transition-duration: 0.5s;
	webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-moz-transition-timing-function:ease-out;
	-webkit-transition-timing-function:ease-out;
	-o-transition-timing-function:ease-out;
	-ms-transition-timing-function:ease-out;
}

.body_wrapper {
}
.contents_wrapper {
	padding:10px;
}


/* =============================================================================
Header
============================================================================= */
#page_header {
	width:100%;
}

#page_header .menu1 {
	padding-top:8px;
	width:100%;
	/* background:#ffb6c1; */
	background: #ebebeb;
}

#page_header .menu1:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}


/* --- Logo --- */
#page_header .logo_wrap {
	margin-left:15px;
	float:left;
}


/* --- Hamberger --- */
#page_header .hmenu_wrap {
	margin-right:15px;
	float:right;
}

#page_header #hmenu,
#page_header #hmenu span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

#page_header #hmenu {
	position: relative;
	width: 40px;
	height: 29px;
	cursor: pointer;
}

#page_header #hmenu span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #023467;
}

#page_header #hmenu span:nth-of-type(1) {
	top: 0;
}

#page_header #hmenu span:nth-of-type(2) {
	top: 12px;
}

#page_header #hmenu span:nth-of-type(3) {
	bottom: 0;
}

#page_header #hmenu.open span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
}

#page_header #hmenu.open span:nth-of-type(2) {
	opacity: 0;
}

#page_header #hmenu.open span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

/* --- Dropdown --- */
#page_header .dmenu {
	display: none;
}

#page_header .dmenu:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}

#page_header .dmenu .dmenu_wrap {
	position: absolute;
	z-index:1000;
	background:#fff;
	border-style: solid;
	border-color: #ccc;
	border-width: 1px 1px 0;
	width:300px;
	right:0;
}

#page_header .dmenu .dmenu_wrap .dmenu_inner {
}

#page_header .dmenu .dmenu_wrap .dmenu_inner .dmenu_list {
	border-bottom: solid 1px #ccc;
	font-size:120%;
	line-height:400%;
	padding-left:10px;
}

#page_header .dmenu .dmenu_wrap .dmenu_inner .dmenu_list:hover {
	background: #023467;
	color:#fff;
	cursor:pointer;
}

#page_header .dmenu .dmenu_wrap .dmenu_inner .dmenu_list a {
}


/* =============================================================================
Footer
============================================================================= */
#page_footer {
	position: relative;
	margin: auto;
	width:100%;
	height: 70px;
	border-top: 1.5px solid #023467;
}

/* --- Logo --- */
#page_footer .logo_wrap {
	position: absolute;
	margin-left: 5px;

	top: 60%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
	
	float:left;
}

/* --- Copylight --- */
#page_footer .copy_wrap {
	position: relative;
	margin-left: 15px;
	margin-right:15px;

	top: 60%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);

	display: flex;
	justify-content: center; /* 子要素を中央揃え */
	color: #000;
}


/* =============================================================================
Auth
============================================================================= */
#authMessage {
	text-align:center;
	font-size:1.2em;
	color:#ff0000;
}


/* =============================================================================
Login
============================================================================= */
.login_message_wrap {
}

.login_message_wrap .title {
	border-left: solid 10px #023467;
	padding-left: 10px;
}

.login_message_wrap .title h2 {
	font-size: 18px;
	font-weight: bold;
	color: #023467;
}

.login_message_wrap .line_wrap {
	margin-top: 1em;
	padding: 10px;
	border: solid 1px #3cb371;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: #ffffcc;
}

.login_message_wrap .line_wrap .date {
	font-size: 1.1em;
	color: #333;
	margin-bottom: 10px;
}

.login_message_wrap .line_wrap .text {
	font-size: 1.2em;
	color: #333;
	margin-bottom: 5px;
	line-height: 1;
}

/* 動作環境 */
.sys_env_wrap {
	text-align: center;
}

.sys_env_wrap .line_wrap {
	text-align:left;
	display:inline-block;
}

/* Menu */
.menu_shop_name {
	text-align:left;
	font-size:1.2em;
	font-family: Arial, sans-serif;
	font-weight: bold;
	color: #333;
	margin-left:5px;
}

/* =============================================================================
Form
============================================================================= */
.form_loan_wrapper {
	padding:0 0 20px;
}

.contents_wrapper h1,
.form_wrapper h1 {
	font-size:160%;
	font-weight:bold;
	text-align:center;
	padding-bottom: 1em;
}

.form_wrapper h2 {
	font-size: 1.6em;
	font-weight:bold;
	border: solid 1px #ccc;
	background: #1e90ff;
	color: #fff;
	padding: 0.5em;
	margin: 1em 0 0.5em;
}

.form_wrapper .err_msg {
	color: #ff0000;
	margin-bottom: 1em;
}

.form_wrapper .field {
	padding-bottom:20px;
}

.form_wrapper .field_title {
	background:#023467;
	color:#fff;
	padding:10px;
	font-size:110%;
	font-weight:bold;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}

.form_wrapper .field_title2 {
	font-weight: bold;
	font-size: 110%;
}

.form_wrapper .field_item {
	margin-top:10px;
}

.form_wrapper .error-message {
	font-size:1.2em;
	color:#ff0000;
}

.form_wrapper .need_input {
	color:#ff0000;
}

.form_wrapper .need_input2 {
	color:#ff0000;
	font-weight: bold;
}

.form_wrapper .field_item input:focus {
	border:solid 1px #EEA34A;
}

/* --- TEXT, PASSWORD --- */
.form_wrapper .field_item input[type="text"],
.form_wrapper .field_item input[type="password"] {
	border:0;
	padding:10px;
	font-size:1.3em;
	border:solid 1px #ccc;
	margin:0 0 10px;
	width: 100%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

.form_wrapper .field_item input[type="text"].tel {
	width: 30%;
}

.form_wrapper .field_item input[type="text"].zip {
	width: 30%;
}

.form_wrapper .field_item input[type="text"].income {
	width: 30%;
}

/* --- SELECT --- */
.form_wrapper .field_item select {
	border:0;
	padding:10px;
	font-size:1.3em;
	border:solid 1px #ccc;
	margin:0 0 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}


/* --- CHECKBOX --- */
.form_wrapper .chkbox label {
	margin-right:15px;
	padding-left: 38px;
	font-size: 18px;
	line-height: 32px;
	display: inline-block;
	vertical-align:middle;
	cursor: pointer;
	position: relative;
}

.form_wrapper .chkbox label:before {
	content: '';
	width: 32px;
	height: 32px;
	display: inline-block;
	position: absolute;
	left: 0;
	background-color: #fff;
	/* box-shadow: inset 1px 2px 3px 0px #000; */
	box-shadow: inset 1px 1px 1px 1px #000;
	border-radius: 6px 6px 6px 6px;
}

.form_wrapper .chkbox input[type=checkbox]:checked + label:before {
	content: '\2713';
	font-size: 34px;
	color: #fff;
	background-color: #06f;
}


/* --- RADIO --- */
.form_wrapper .radio label {
	margin-right: 20px;
}

.form_wrapper .radio label {
	padding: 0 0 0 35px;
	font-size: 18px;
	line-height: 33px;
	display: inline-block;
	cursor:	pointer;
	position: relative;
}

.form_wrapper .radio label:before {
	content: '';
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	left: 0;
	border: solid 2px #808080;
	border-radius: 50%;
}

.form_wrapper .radio input[type="radio"]:checked + label:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 9px;
	left: 9px;
	background-color: #0000ff;
	border-radius: 50%;
}



/* --- SUBMIT --- */
.form_wrapper .field_item_submit {
	text-align:center;
	padding-top:20px;
}

.form_wrapper .field_item_submit input[type="submit"] {
	border:solid 1px #ccc;
	padding:15px 30px;
	margin:0 0 20px;
	font-family:Arial, sans-serif;
	font-size:1.2em;
	text-transform:uppercase;
	font-weight:bold;
	color:#333;
	cursor:pointer;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.form_wrapper .field_item_submit input[type="submit"]:hover {
	background:#000;
	color:#fff;
	border:solid 1px #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
	opacity: 0.75;
	text-decoration: none;
	-moz-transition-duration: 0.5s;
	webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-moz-transition-timing-function:ease-out;
	-webkit-transition-timing-function:ease-out;
	-o-transition-timing-function:ease-out;
	-ms-transition-timing-function:ease-out;
}




@media screen and (min-width: 1051px) {
	#search_result{
		overflow-x:hidden;
	}
}

@media screen and (max-width: 1050px) {
	#search_result{
		overflow-x:scroll;
	}
}

.result_table th,
.result_table td {
	padding: 0 5px 0 5px;
	border: solid 1px;
	border-color: #5a5858; 
}

.add_item {
	width: 100%;
	display: inline-block;
}

.w100 {
	width: 100%;
}

.w50 {
	width: 50%;
}

.mt0 {
	margin-top: 0px;
}

.mt50 {
	margin-top: 50px;
}

.app_year {
	width: 12%;
	display: inline-block;
}

.app_month {
	width: 9%;
	display: inline-block;
}

.app_day {
	width: 9%;
	display: inline-block;
}

.table_width {
	width: 1015px;
}

.table_width_100 {
	width: 100% !important;
}

.table_width_100 tr th,
.table_width tr th {
	background-color: #bde9ba;
}

/* paymentRequests 結果表示欄 */
.field_payment_request_header {
	position: relative;
}

/* paymentRequests 結果表示欄 左寄せ文字列 */
.field_payment_request_result {
	bottom: 0;
	position: absolute;
	float:left;
	margin:0 0 20px;
}

/* payment_requests 結果表示欄 右寄せ */
.field_all_select {
	position: relative;
	display: flex;
	justify-content: flex-end; /* 子要素を末尾に寄せる */
}

/* payment_requests 結果表示欄 ボタン */
.form_wrapper .field_all_select input[type="submit"] {
	border:solid 1px #ccc;
	padding:15px 30px;
	margin:0 20px 20px;
	font-family:Arial, sans-serif;
	font-size:1.2em;
	text-transform:uppercase;
	font-weight:bold;
	color:#333;
	cursor:pointer;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.form_wrapper.field_all_select input[type="submit"]:hover {
	background:#000;
	color:#fff;
	border:solid 1px #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
	opacity: 0.75;
	text-decoration: none;
	-moz-transition-duration: 0.5s;
	webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-moz-transition-timing-function:ease-out;
	-webkit-transition-timing-function:ease-out;
	-o-transition-timing-function:ease-out;
	-ms-transition-timing-function:ease-out;
}

/* paymentRequests 結果表示 表 見出し */
.reslt_table_payment_request tr th {
	background-color: #ffff00;
}

.reapp_btn_wrap {
	margin: 7px 0;
}

.reapp_btn {
	padding: 10px;
	width: 100%;
	cursor: pointer;
	background: #c71585;
	color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 0;
}

.reapp_btn:hover {
	background: #000080;
}

.reapp_null_wrap {
	width: 100%;
	height: 55.5px;
}

.btn_disable {
	background: #808080;
	cursor: default;
}

.btn_disable:hover {
	background: #808080 !important;
	color: #333 !important;
	cursor: default !important;
	opacity: 1 !important;
	border:solid 1px #ccc !important;
}


.field_datepicker {
	border:0;
	padding:10px;
	font-size:1.3em;
	border:solid 1px #ccc;
	margin:0 0 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
	width: 250px !important;
}

.member_table th,
.member_table td {
	border: solid 1px;
}

