﻿@charset "utf-8";
/* CSS Document */
body {
}

.topic_path {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 16px;
    color: #000;
    height: 50px;
    pointer-events: none;
}

.topic_path > * {
    margin: 0px 8px;
}

.topic_path__icon {
    background: url(../Img/svg/caret-right.svg) no-repeat;
    width: 23px;
    height: 23px;
}

.topic_path a {
    color: #194A9F;
    text-decoration: none;
    border-bottom: 1px solid #194A9F;
    pointer-events: auto;
}

.topic_path a:hover {
    color: #002060;
    border-color: #002060;
}

.topic_path__border {
    border-bottom: 1px solid #E5E5E5;
}

.haed_line_area {
	position: relative;
}
.head_line {
	clear: both;
	margin: 30px 0;
	font-size: 30px;
    text-align: center;
    color: #002060;
}

.copy_btn a {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 29px;
    text-align: center;
    text-decoration: none;
}

.logout_btn {
	width: 50px;
	height: 50px;
	padding: 0;
	border: none;
	background: transparent;
	position: fixed;
	bottom: 0;
	right: 0;
}
.logout_btn02 {
    position: absolute;
    right: 16px;
    color: #0066CC;
    text-decoration: none;
    font-weight: bold;
}
.logout_btn02:hover {
    color: #002060;
}

/*client_list01
--------------------------------------------------------*/
.new_btn a,.submit_btn{
	width: 350px;
    margin: 0 auto;
}

.new_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
} 

/*client_list02
--------------------------------------------------------*/
.client_table01 {
	max-height: 400px;
	margin: 0 0 32px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
#table01 {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
#table01 thead tr {
    background-color: #DFDFDF;
}
#table01 thead tr th {
	padding: 8px 10px 12px;
    color: #000;
    font-size: 14px;
    text-align: left;
}
#table01 thead tr th:nth-child(1),#table01 thead tr th:nth-child(2) {
	width: 19%;
}
#table01 thead tr th:nth-child(3) {
    width: 32%;
}
#table01 thead tr th:nth-child(4) {
    width: 30%;
}
#table01 thead tr th.header { 
    background-image: url(../img/bg.gif); 
    background-repeat: no-repeat; 
    background-position: top 15px right 22px; 
	background-size: 27px;
}

/* 降順：headerSortUpクラスが付与 */
#table01 thead tr th.headerSortUp { 
    background-image: url(../img/desc.gif); 
}
/* 昇順：headerSortDownクラスが付与 */
#table01 thead tr th.headerSortDown { 
    background-image: url(../img/asc.gif); 
}

#table01 tbody tr:nth-child(even) {
	background-color: #F2F2F2;
}

#table01 tbody tr td {
	padding: 10px;
	border-bottom: solid 1px #E5E5E5;
}

#table01 tbody tr:last-child td {
    border: 0;
}

#table01 tbody tr td ul li {
    line-height: 34px;
}

#table01 tbody tr td ul li a {
    display: block;
    width: 110px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#table01 tbody tr td ul.client_info li a {
    width: 90px;
}

#table01 tbody tr td ul.client_info li:nth-child(1) {
	float: left;
}
#table01 tbody tr td ul.client_info li:nth-child(2) {
	float: right;
}

#table01 tbody tr td ul.menu_btn li {
    float: left;
}
#table01 tbody tr td ul.menu_btn li:nth-child(1) {
	margin: 0 10px 0 0;
}

/*register
--------------------------------------------------------*/
.register_area {
	font-size: 18px;
}
.account_number {
    text-align: center;
}

.radio {
	display: table;
	width: 40%;
	margin: 0 auto 50px;
}
.radio li {
	display: table-cell;
	text-align: center;
}

.select_area {
    width: 100%;
    padding: 10px;
    height: 40px;
    font-size: 16px;
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: solid 1px #808080;
    background: #FFF url(../Img/svg/caret-down.svg) no-repeat 97% 50%;
    background-size: 15px auto;
    color: #000;
}

.radio input[type=radio] {
	display: none;
}
.radio input[type="radio"]:checked + label {
	background: #31A9EE;/* マウス選択時の背景色を指定する */
	color: #ffffff; 	/* マウス選択時のフォント色を指定す*/
	-webkit-box-shadow:inset 1px 1px 1px 1px #666;
	box-shadow:inset 1px 1px 1px 1px #666;
}
.radio li .label {
	display: block;		/* ブロックレベル要素化する */ 
	margin: 0 5px;		/* ボックス外側の余白を指定する */
	height: 50px;		/* ボックスの高さを指定する */
	padding-left: 5px;	/* ボックス内左側の余白を指定する */
	padding-right: 5px;	/* ボックス内右側の余白を指定する */
	color: #000;		/* フォントの色を指定 */
	text-align: center;	/* テキストのセンタリングを指定する */
	line-height: 50px;	/* 行の高さを指定する */
	cursor: pointer;	/* マウスカーソルの形（リンクカーソル）を指定する */
	border: 1px solid #aaa;/* ボックスの境界線を実線で指定する */
	border-radius: 5px;	/* 角丸を指定する */
	font-size: 20px;
}
.radio li .label:hover {
	background: #d1eeff;
}

/*edit01
--------------------------------------------------------*/
.customer_name {
	clear: both;
	border-bottom: double 3px #002060;
    padding-bottom: 8px;
	font-size: 16px;
    font-weight: bold;
    line-height: 1.65;
}
.customer_list a {
	float: right;
}

.edit_section_area {
    position: relative;
    margin-bottom: 32px;
}

.edit_area01 {
    margin: 0 0 10px;
    padding: 32px 0 20px;
}
.edit_area01 p {
	text-align: center;
}
.edit_area01 p:nth-child(1) {
	font-size: 16px;
}
.edit_area01 p:nth-child(2) {
	margin: 0 0 24px;
	font-size: 20px;
	font-weight: bold;
}
.edit_area01 p:nth-child(3) a {
	display: block;
	width: 500px;
	margin: 0 auto;
	text-decoration: none;
    line-height: 50px;
}

.edit_area02 {
    text-align: center;
}

.edit_area02 li {
	width: 40%;
    display: inline-block;
    text-align: left;
}
.edit_area02 li .edit_area02_inner {
	padding: 10px;
}

.edit_area02 li p:nth-child(1),
.edit_area03 li p:nth-child(1) {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.4em;
}
.edit_area02 li p:nth-child(2) {
    line-height: 50px;
    pointer-events: none;
    opacity: 0.3;
}
/*edit02
--------------------------------------------------------*/
.edit_area03 {
    margin: 0 0 32px;
    text-align: center;
}
.edit_area03 li {
	width: 40%;
    box-sizing: border-box;
    display: inline-block;
    text-align: left;
	padding: 10px;
}

.edit_area03 li p:nth-child(2) a {
	text-decoration: none;
    line-height: 50px;
}

.edit_area03 li p:nth-child(3) a {
	position: absolute;
	right: 10px;
	bottom: 5px;
	display: block;
	padding: 5px 15px;
	border: solid 1px #15449d;
	text-align: center;
	text-decoration: none;
	font-size: 0.9em;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
}
.edit_area03 li p:nth-child(3) a:hover {
	text-decoration: underline;
}
.edit_btn01 {
	clear: both;
	padding: 32px 0;
}
.edit_btn01 a {
	width: 500px;
	margin: 0 auto;
	text-decoration: none;
    line-height: 50px;
}

.history_btn {
    position: relative;
    height: 33px;
}

.history_btn a {
    position: absolute;
    right: 0;
    line-height: 29px;
    text-align: center;
    text-decoration: none;
}

p.redemp_txt {
    color: #5E5E5E;
    font-size: 14px;
    border-top: 1px solid #002060;
    padding-top: 8px;
}
/*history02
--------------------------------------------------------*/
#table02 {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
#table02 thead tr {
    background-color: #DFDFDF;
}
#table02 thead tr th {
	padding: 8px 10px 12px;
    color: #5E5E5E;
    font-size: 14px;
    text-align: left;
}

#table02 thead tr th.header { 
    color: #000;
    background-image: url(../img/bg.gif); 
    background-repeat: no-repeat; 
    background-position: top 15px right 22px; 
    background-size: 27px;
}

/* 降順：headerSortUpクラスが付与 */
#table02 thead tr th.headerSortUp {
    background-image: url(../img/desc.gif);
}
/* 昇順：headerSortDownクラスが付与 */
#table02 thead tr th.headerSortDown {
    background-image: url(../img/asc.gif);
}

#table02 thead tr th:nth-child(1) {
	width: 20%;
}
#table02 thead tr th:nth-child(2){
	width: 40%;
}
#table02 thead tr th:nth-child(3) {
	width: 25%;
}
#table02 thead tr th:nth-child(4) {
	width: 15%;
}

#table02 tbody tr:nth-child(even) {
    background-color: #F2F2F2;
}

#table02 tbody tr td {
	padding: 10px;
	border-bottom: solid 1px #E5E5E5;
}

#table02 tbody tr:last-child td {
	border: 0;
}

#table02 tbody tr td ul.voice_area li:nth-child(1) {
	float: left;
}
#table02 tbody tr td ul.voice_area li:nth-child(2) {
	float: right;
}

#table02 tbody tr td ul.voice_area li a {
    width: 90px;
}

#table02 tbody tr td ul li {
    line-height: 34px;
}

#table02 tbody tr td a {
    display: block;
    width: 110px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#table02 tbody tr td span {
    color: #002060;
    font-size: 24px;
    font-weight: 300;
}

.table02_txt {
    font-size: 14px;
    color: #5E5E5E;
}

/*save
--------------------------------------------------------*/
.save_area {
    font-size: 18px;
}
.response_select {
    width: 35%;
    margin: 0 auto 48px;
}
/*authenticate
--------------------------------------------------------*/
.authenticate_area {
	font-size: 18px;
}
.authenticate_table01,
.register_table01{
	width: 35%;
	margin: 0 auto 32px;
	font-size: 16px;
}

.authenticate_table01 tr:nth-child(odd) td,
.register_table01 tr:nth-child(odd) td {
    padding: 8px 0 4px;
}

.authenticate_table01 tr:last-child td,
.register_table01 tr:last-child td {
    padding: 0;
}

.authenticate_table01 tr td:nth-child(1),
.register_table01 tr td:nth-child(1) {
	line-height: 1.2em;
}
.text_area01 {
    width: 100%;
    height: 40px;
    padding: 10px;
    background: #FFF;
    border: solid 1px #808080;
    box-sizing: border-box;
    font-size: 18px;
    outline: none;
    color: #000;
}

.text_area01__invalid {
    border: solid 1px #F00;
}

.text_area02 {
    width: 150px;
    height: 100%;
    padding: 10px;
    background: #FFF;
    border: solid 1px #808080;
    box-sizing: border-box;
    font-size: 18px;
    outline: none;
    color: #000;
}

.error-message {
    height: 20px;
    color: #FF0000;
    font-size: 12px;
    padding-top: 2px;
}

.pass_change {
	margin: 0 0 4px;
	text-align: right;
	font-size: 12px;
}
.pass_change a,.pass_change label {
	text-decoration: none;
	color: #194A9F;
}
.pass_change a:hover,.pass_change label:hover {
	cursor: pointer;
	color: #002060;
}

.cssacc {
	display: none;
}
 .info_area {
	height: 0;
    padding: 0;
    overflow: hidden;
	font-size: 16px;
}
.cssacc:checked + .info_area {
	height: auto;
	margin: 0 0 40px;
	padding: 16px;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	background: #F2F2F2;
	transition: 0.4s;
}
.info_area p:nth-child(1) {
    margin: 0 0 5px;
    color: #E8043B;
}
.info_area p:nth-child(2) {
	margin: 0 0 8px;
	font-size: 1.1em;
}

#accountNumberSearchArea {
    height: 30px;
    margin: -30px 0 5px;
    text-align: right;
    font-size: 14px;
}