﻿/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}ol, ul {list-style-type: none;}

/* 共通 */

body {
    color: #333;
    font-size: 12pt;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    font-family: , Verdana,"メイリオ",Meiryo,"游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;
}
#wrapper{
      width:1000px;
      margin:0 auto;    
    }
.form-control{margin:0 0 3px 0;}
input[type=checkbox], input[type=radio]{
    width:25px;
    height:25px;
    vertical-align:middle;
    margin:0 5px 0 0;
    }
@media screen and (max-width: 810px) {
	/* 770px以下に適用されるCSS（スマホ用） */
    body{
        font-size:0.8em;
        }
    #wrapper{
          width:calc(100% - 20px);
          margin:0 10px;    
        }
    img{max-width:100%;}
}

.cls_wrapper{
      width:1000px;
      margin:0 auto;    
    }
@media screen and (max-width: 810px) {
	/* 770px以下に適用されるCSS（スマホ用） */

    .cls_wrapper{
          width:calc(100% - 20px);
          margin:0 10px;    
        }
}    

/* Header */
#title{
    display:block;
    }
#title span{
    display:none;
    }
 
.site-header {
    position: relative;
    border-bottom:#CCC 1px solid;
    }    
.site-header__wrapper {  
    padding-top: 1rem;
    padding-bottom: 1rem; }
.nav__toggle {display: none; }

/* Header PC */    
@media (min-width: 771px) {
    .site-header__wrapper {
      width:1000px;
      margin:0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-sizing:border-box;
      } 
    .btn_header{
            display:inline-block;
            color:#777;
            text-decoration:none;
            border:#ccc 1px solid;
            border-radius:4px;
            background:#F3F3F3;
            padding:5px 10px;
            margin:0 0 0 15px;           
        }
   .btn_header:hover,
   .btn_header:active,
   .btn_header:focus{
        background:#ECECEC;
        color:#777;
        text-decoration:none;
        }
    .nav__wrapper {
        display: flex; } 
}

/* Header SP */ 
@media (max-width: 810px) {
  .nav__wrapper {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 10;
        background-color: #ECECEC;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); } 
    .nav__item a {
        display: block;
        color:#777;
        text-decoration:none;
        border-bottom:#ccc 1px solid;
        padding: 1.5rem 1rem; }
    .nav__item a:hover,.nav__item a:active,.nav__item a:focus{color:#777;text-decoration:none;}
    .nav__toggle {
        display: block;
        position: absolute;
        color:#777;
        right: 1rem;
        top: 1rem;
        border:#ccc 1px solid;
        border-radius:4px;
        background:#F3F3F3;
        padding:5px 5px;      
      }
}

/* Footer */
footer{
    height:40px;
    width:100%;
    text-align:center;
    color:#fff;
    margin:30px 0 0 0;
    padding:10px 0;
    box-sizing:border-box;
    }

/* 入力テーブル */
.input_note{
    margin:20px 0 -15px 0;
    }
.input_table {
    border-collapse: collapse;
    width: 99%;
    margin:20px 0 0 0;
    font-size:0.9em;
}

.input_table caption{
    width:100%;
    background:#555;
    padding:5px;
    text-align:center;
    color:#fff;
    box-sizing:border-box;
    font-size:1.2em;
    font-weight:bold;
    }
.input_table th,
.input_table td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
  vertical-align:middle;
}

.input_table th {
  background: #f9fafc;
  text-align: left;
  width: 230px;
}


.side_list{display:flex;}
.side_list li{
    margin:0 5px;
    line-height:2;
    }
/* 入力テーブルSP用設定 */
@media only screen and (max-width: 810px) {
  .input_table tr,
  .input_table th,
  .input_table td {
    display: block;
    width: auto;
  }
  
  .input_table tr:first-child {
    border-top: 1px solid #dbe1e8;  
  }
  
  .input_table th,
  .input_table td {
    border-top: none;
  }
  .side_list li{
    line-height:2.5;
    }
}

/* 文字色 */
.red{color:#ff0000;}

/* ボタン */
.btn_area{
    text-align:center;
    margin:30px auto;
    }
.btn_back{
    display:inline-block;
    text-align: center;
    color:#333;
    background-color:#F8F8FF;
    border: #666 1px solid;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    margin:0 10px 0 0;
    text-decoration:none; 
    }
.btn_back:hover,.btn_back:active,.btn_back:focus{color:#333;text-decoration:none;}
.btn_next{
    display:inline-block;
    text-align: center;
    color:#fff;
    background-color:#28A745;
    border:#269F42 1px solid;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    text-decoration:none;
    }
.btn_next:hover,.btn_next:active,.btn_next:focus{color:#fff;text-decoration:none;}


.btn_mini{
    display:inline-block;
    text-align: center;
    color:#333;
    background-color:#F8F8FF;
    border: #666 1px solid;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.3333333;
    border-radius: 6px;
    margin:0 10px 0 0;
    text-decoration:none; 
    }
.btn_mini:hover,.btn_mini:active,.btn_mini:focus{color:#333;text-decoration:none;}


.input_right
{
    text-align:right;
}

.input_center
{
    text-align:center;
}

.ErrMsg
{
    /*
    padding-left:5px;
    padding-right:5px;
    color:#000;
    background-color:#FFEEFF;
    border:2px solid #ff0000;
    padding:5px 5px 5px 5px;
    font-size:9pt;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;   
    border-radius: 4px;        
    display:none;
    
*/
    color:#000;
    font-weight:normal;
    font-size:small;
    margin-top:10px;
    margin-bottom:5px;
    position: relative;
    padding:5px 5px 5px 5px;
    background-color: #FFEEFF;
    border: 2px solid #ff0000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;   
    border-radius: 4px;
    text-align:left;
    display:none;
}
.ErrMsg::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  top: -15px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ff0000;
  border-left: 15px solid transparent;
    }
/* beforeで本体の三角を表現 */
.ErrMsg::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #FFEEFF;
  border-left: 15px solid transparent;
}    

/*メッセージ*/
#btn_message {
    width: 90%;
    margin: 10px auto;
    text-align:right;
}
.btn_messagereset{
    display:inline-block;
    color:#333;
    text-decoration:none;
    font-size:18px;
    border-radius:6px;
    background-color:#F8F8FF;
    border: #666 1px solid;
    padding: 5px 30px;
    }
.btn_messagereset:hover,.btn_messagereset:focus,.btn_messagereset:active{
    color:#333;
    text-decoration:none;
    }
.btn_messagesend{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    border-radius:6px;
    background-color:#28A745;
    border:#269F42 1px solid;
    padding: 5px 30px;
    }
.btn_messagesend:hover,.btn_messagesend:focus,.btn_messagesend:active{
    color:#fff;
    text-decoration:none;
    }



#display_area {
    width: 90%;
    margin:10px auto;
    height: 430px;
    border: #2C74BA 3px solid;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#send_area {
    width: 90%;
    margin: 10px auto;
}

#message_list {
    width: 100%;
}
#message_list li{
    border-bottom:#CCC 1px solid;
    padding:10px 5px;
    box-sizing:border-box;
    }
.message_info{
    margin:0 0 5px 0;
    /*font-weight:bold;*/
    }
.message_info dt{
    float:left;
    clear:both;
    width:160px;
    font-size:9pt;
    }
.message_info dd{
    font-size:9pt;
    }    
.msg_color1{color:#F0821E;}
.msg_color2{color:#2C74BA;}        


.btn_newmsg{
    display:inline-block;
    text-align: center;
    color:#fff;
    background-color:blue;
    border: #666 1px solid;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px; 
    font-weight:bold;
    }
.btn_newmsg:hover,.btn_select:active,.btn_select:focus{color:#eee;text-decoration:none;}


.btn_newmsgJim {
    display: inline-block;
    text-align: center;
    color: #fff;
    background-color: green;
    border: #666 1px solid;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px;
    font-weight: bold;
    margin-left:5px;
}

.btn_newmsgJim:hover, .btn_select:active, .btn_select:focus {
    color: #eee;
    text-decoration: none;
}    

.msgread
{
    color:#666;
}


/*新着メッセージ通知*/
.NewNotification
{
    
    text-align: left;
    color:#FF0000;
    background-color:#FFEEFF;
    border: #FF3333 3px solid;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    margin:5px 0px 0 0;
    text-decoration:none;
    
    
    
}


#loader{
    margin:10px auto;
    width: 50px; /*ローディングアイコンの横サイズ*/
    height: 50px; /*ローディングアイコンの縦サイズ*/
    border-radius: 50%;  /*CSS3で円を書く*/
    border: 8px solid #555;  /*円に○の白枠をつける*/
    border-right-color: transparent; /*円の右にC状の空きをつける*/
    animation: spin 1s linear infinite; /*1秒毎にくるくる回転するアニメーション*/
}
@keyframes spin
{
    0% { transform: rotate(0deg);   opacity: 0.2; } /*0%の時は20％の透明度*/
    50%  { transform: rotate(180deg); opacity: 1.0; } /*50%の時は透明度なし*/
    100%   { transform: rotate(360deg); opacity: 0.2; } /*100%の時に20％の透明度に戻る*/
 
}


.mente_table {
    border-collapse: collapse;
    width: 100%;
    margin:20px 0 0 0;
    font-size:0.9em;
}

.mente_table caption{
    width:100%;
    background:#555;
    padding:5px;
    text-align:center;
    color:#fff;
    box-sizing:border-box;
    font-size:1.2em;
    font-weight:bold;
    }
.mente_table th,
.mente_table td {
  border: 1px solid #dbe1e8;  
  padding: 2px;
  vertical-align:middle;
  
}

.mente_table th {
  background: #f9fafc;
  text-align: left;
}


/* 自動で消えるメッセージ　*/
.message {
    display:inline-block;
    height:50px;
    text-align:center;
    padding: 10px;
    background:rgba(255,0,255,0.8);
    position: fixed;
    z-index: 10;
    font-weight:bold;
    font-size:26px;
    color:#ffffff;
    margin-left:auto;
    margin-right:auto;
    width:100%;
    top:70px;
    left:0;
}

.message:before {
    position: absolute;
    background:rgba(255,0,255,0.8);
    margin: 3px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: -10;
}


/* 自動で消えるメッセージその②　*/
.message_ok {
    display: inline-block;
    height: 50px;
    text-align: center;
    padding: 10px;
    background: #00CC33;
    position: fixed;
    z-index: 10;
    font-weight: bold;
    font-size: 26px;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    top: 70px;
    left: 0;
}

    .message_ok:before {
        position: absolute;
        background: #00CC33;
        margin: 3px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        z-index: -10;
    }


/* 銀行コード検索　*/

.kure_select{
    margin:0 0 30px 0;
    }
.kure_select h1{
    margin:0 0 10px 0;
    }
.kure_table{
    width:100%;
    border:#555555 1px solid;
    }
.kure_table td{
    border:#555555 1px solid;
    text-align:center;
    }
.kure_table td a{
    display:block;
    width:100%;
    height:100%;
    text-decoration:none;
    color:#333333;
    padding:5px;
    }

.kure_table td a:hover,
.kure_table td a:active{
    background:#E6E6E6;
    }
.delta{
    font-size:20pt;
    text-align:center;
    }
@media screen and (min-width : 768px){
.selectbank{
   text-align: center;
    }
}
@media screen and (max-width : 767px){
.kure_table{
    width:100%;
    border:#333333 1px solid;
    }
.kure_table td{
    border:#333333 1px solid;
    text-align:center;
    }
}

.kure_content{
    margin:0 0 30px 0;
    }

#kure_list li{
    margin:0 0 15px 0;
    border:#555555 1px solid;
    padding:5px;
    }

#kure_list li h2{
    font-size:16pt;
    margin:0 0 5px 0;
    color:Blue;
    }

