/* ! フラッシュ ================================================== */
section#flash{
  width: 100%;
  position: fixed;
  top: -10px;
  right: 0px;
  z-index: 999;
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
section#flash.hide{
  opacity: 0;
  pointer-events: none; 
}
#flash .wrap_flash{
  padding: 30px 20px;
  width: 100vw;
  flex: 0 0 100vw;
  display: flex;
  flex-direction: column;
}
#flash .message{
  padding: 10px 15px 10px 15px;
/*   background: rgba(255, 175, 0,.98); */
  -webkit-box-shadow: 0px 10px 12px rgba(0,0,0,.15);
  	  box-shadow:0px 10px 12px rgba(0,0,0,.15);
  border-radius: 0;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
/*   color: white; */
  min-width: 210px;
  font: 500 15px/1.3em 'noto sans japanese',sans-serif;
  cursor: pointer;
  border: solid 2px #000;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  flex: 0 0 auto;
}
#flash .message:before{
  content: '';
  width: 17px; height: 17px;
  background: url(../img/shape/ico_flash.svg)no-repeat center;
  background-size: 100% auto;
  display: inline-block;
  margin: 0 6px 0 0;
}
#flash .message.success:before{
  background: url(../img/shape/ico_flash_success.svg)no-repeat center;
  background-size: 100% auto;
}