html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
header{
  background-color: rgba(255,255,255,0.5);
  width: 100%;
  top:0;
  z-index:1;
  display: flex;
  position: fixed;
  justify-content: space-between;
}
.loading{
  display: flex;
  position: fixed;
  justify-content: center;
  width: 100%;
  top:30px;
  z-index:2;
}
.hide {
  display: none;
}
.loading img{
  width:80px;
  height:10px;
}

.contents-header-margin{
	height:50px;
}
.image-date{
  padding-top:20px;
}
.image-item{
  position: relative;
  margin-bottom:10px;
  padding:0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.image-item.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.image-item img{
  vertical-align:middle;
}
.image-item-text-left{
  position: absolute;
  bottom:0;
  left:0;
  background-color: rgba(0,0,0,0.7);
  padding:3px;
  background-color: rgba(255,255,255,0.3);
}
.contents-bottom-margin{
	height:60px;
}
  footer {
    background-color: rgba(255,255,255,0.5);
    width: 100%;
    position: fixed;
    bottom: 0;
	font-size:0.8em;
	}
	.footer-wrap{
		display: flex;
    	justify-content: center;
		position: relative;	
	}
	.footer-wrap .right{
		position: absolute;
		right: 0;
	}
  footer .message{
    display:none;
  }


.date-edit {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
}
input[type="date"] {
  position: relative;
  padding: 0 10px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  font-size: 14px;
  opacity:0;
}

.date-edit::before {
  position: absolute;
  content: "";
  top: 2px;
  right: 2px;
  width: 36px;
  height: 36px;
  background-size:36px 36px;
  background-image: url("icon_calendar.png");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 3px;
}
 
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-calendar-picker-indicator{
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 0, 0.5);
  color: transparent;
  cursor: pointer;
}