@charset "utf-8";

/* --------------------
 パスワード再発行画面共通
 --------------------*/

* {
    margin: 0;
}

/* --------------------
 body
 --------------------*/
body {
    font-size: 14px;
}

.desc-area {
    padding-top: 15px;
}

/* --------------------
 section
 --------------------*/
body > section, body > form > section {
    width: 550px;
    margin: 0px auto;
}

ul li label {
    margin: 0px;
}

 /* --------------------
   ボタン
 --------------------*/
.btn{
    cursor: pointer;
    border-radius: 3px;
}

#btn-submit {
    width: 280px;
    font-size: 20px;
 }

.btn-info {
    background-color: #2c71a5;
}

.btn-info:hover, .btn-info.hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info  {
    background-color: #317EB9;
}

.button_row {
    margin: 15px 0 5px 0;
    text-align: center;
}

 /* --------------------
   ラベル
 --------------------*/
.label-large{
    font-weight: bold;
    font-size: 16px;
    word-break: break-all;
    word-wrap: break-word;
    display: inline-block;
}

.label-multiline {
    line-height: 1.5;
}

  /* --------------------
   input
 --------------------*/
input[type="email"],
input[type="text"],
input[type="password"]{
     font-size: 18px;
     height: 2.5em;
     width: 80%;
 }

.form-control:focus, .select2-search input[type=text]:focus {
    border-color: #DDD;
}

 /* --------------------
 H3
 --------------------*/

h3 {
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 6px solid #5ea01c;
    font-weight: bold;
    font-size: 18px;
}

 /* --------------------
 note
 --------------------*/
.notes {
    color: #A9A9A9;
}

/* --------------------
 FORK
 --------------------*/
#fork {
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 2px;
    width: 800px;
}

#fork > p, #main-title > p{
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

#fork > h1{
    margin: 25px auto;
    min-height: 25px;
}

#fork > h2{
    margin-bottom: 15px;
    padding-left: 12px;
    border: none;
    font-weight: bold;
    font-size: 20px;
}

p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.72222;
}

 /* --------------------
 RACK
 --------------------*/
.rack th {
    padding-left: 30px;
    padding-right: 10px;
    width: 110px;
    height: 65px;
    vertical-align: middle;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    font-family: Verdana, Helvetica,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

.rack.light th, .rack.light td {
    border: none;
}

 /* --------------------
 shelf > note-list
 --------------------*/
.notes-list {
    margin: 0;
    padding-left: 20px;
}
.notes-list li {
    font-size: 11px;
}

 /* --------------------
ERROR
 --------------------*/
/*エラー部分をメインフォームの幅に合わせたいだけだったが、
ブラウザ依存を極力排除したいため細かく指定することにした*/
#alertMessage {
    width: 1200px;
    margin: 0px auto 20px auto;
}
.alertMessage1200 {
    width: 1200px;
    text-align: center;
    margin: 0px auto 20px auto;
}
.alertMessage1000 {
    width: 1000px;
    text-align: center;
    margin: 0px auto 20px auto;
}
.alertMessage700 {
    width: 700px;
    text-align: center;
    margin: 0px auto 20px auto;
}
.alertMessage600 {
    width: 600px;
    text-align: center;
    margin: 0px auto 20px auto;
}
.alertMessage550 {
    width: 550px;
    text-align: center;
    margin: 0px auto 20px auto;
}

#alertMessage > ul,
.alertMessage1200 > ul,
.alertMessage1000 > ul,
.alertMessage700 > ul,
.alertMessage600 > ul,
.alertMessage550 > ul
 {
    padding: 0 20px;
}

#alertMessage > ul > li,
.alertMessage1200 > ul > li,
.alertMessage1000 > ul > li,
.alertMessage700 > ul > li,
.alertMessage600 > ul > li,
.alertMessage550 > ul > li
 {
    margin: 0 30px;
    text-align: left;
}

.alert-danger {
    border-color: #dca7a7;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
}
.alert {
    text-shadow: 0 1px 0 rgba(255,255,255,.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);
}
.alert-danger {
    background-color: #f2dede;
    color: #a94442;
}
.alert-warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
}
.alert {
    padding: 15px 0;
    margin-bottom: 20px;
    /*border: 1px solid transparent;*/
    border-radius: 2px;
}

.alert ul, ol {
    margin-bottom: 0;
}