:root{
  --main-orange-color:#EF9408;
  --main-orange-hover-color:#d67407;
  --main-lightgray-color:#c8ced3;
}

body {
  font-family:'Roboto','Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height:100vh;
}

header{
  background-image:url(../../images/logo_back.svg);
  background-repeat:no-repeat;
  background-size:cover;
  height:100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
}
header div.container{
  text-align:right;
  padding-top:104px;
  padding-bottom:104px;
}
header div.container img{
  width:200px;
}

#Breadcrumb{
  background-color:#b1c1c8;
  font-size:small;
}
#Breadcrumb a{
  color:inherit;
  text-decoration:underline;
}
#Breadcrumb span{
  margin-right:5px;
  margin-left:5px;
}

footer{
  text-align:center;
  background-color:#eee;
  padding:52px;
}
footer img{
  width:100px;
}
footer small{
  display:block;
  margin-top:26px;
}

.jumbotron{
  background-color:inherit;
  text-align:center;
}
.jumbotron .lead{
  letter-spacing:5px;
  font
}

.catch{
  line-height:2;
  font-weight:lighter;
}
.catch ul{
  margin:0;
}
.catch div{
  margin-bottom:1em;
}

.pretty.p-orange input:checked~.state label:after,
.pretty.p-orange.p-toggle .state label:after {
  background-color:var(--main-orange-color) !important;
}

.btn-orange{
  background-color:var(--main-orange-color);
  border-color:var(--main-orange-color);
  color:white;
}
.btn-orange:hover{
  background-color:var(--main-orange-hover-color);
  border-color:var(--main-orange-hover-color);
  color:white !important;
}
.btn-orange i{
  margin-right:5px;
}

input::placeholder {
  color:#ccc !important;
  font-weight:lighter;
}

.form-group+.hr{
  height:1px;
  background-color:#eee;
  margin-bottom:1rem;
}

.formError{
  position:static !important;
  opacity:1 !important;
}
.formError .formErrorContent{
  -moz-box-shadow: none !important; 
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  display:inline-block !important;
  width:auto !important;
  border-radius:0px !important;
  background-color:var(--danger) !important;
  margin-bottom:2px !important;
}

span.attention{
  background-color:var(--danger);
  color:white;
  border-radius:5px;
  padding:2px 4px;
  font-size:70%;
  margin-left:5px;
}
span.attention-secondary{
  background-color:var(--secondary);
  color:white;
  border-radius:5px;
  padding:2px 4px;
  font-size:70%;
  margin-left:5px;
}

.form-error{
  display:none;
}
.form-error span{
  border:1px solid var(--danger);
  background-color:var(--danger);
  color:white;
  padding:0 5px;
  font-size:small;
  border-radius:3px;
  margin-bottom:2px;
  width:auto;
}

.annotation{
  font-size:0.5rem;
}

input.error{
  border-color: var(--red);
}
select.error{
  border-color: var(--red);
}
.form-control:focus{
  box-shadow: none !important;
}
input.error:focus {
  color: var(--red);
  border-color: var(--red);
  box-shadow: none;
}
