html,body{
	margin: 0;
	padding: 0;
	color: #333;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

body#maintenance {
	background-image: url('/assets/img/entry_form/maintenance_bg.gif');
	text-align: center;
}

#maintenance .container {
	height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

#maintenance .main {
	font-size: 14px;
	line-height: 1.8em;
}

#maintenance .logo,
#maintenance_info .logo {
	width: 200px;
}

#maintenance h1 {
	font-size: 24px;
}

.maintenance_info {
	margin-top: 20px;
	padding: 15px 10px;
	border: solid 2px #ff0000;
	background-color: #fff;
}

.maintenance_date {
	font-size: 16px;
	font-weight: bold;
}

#maintenance_info {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0,0,0,0.7);
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 2;
}

#maintenance_info .maintenance_info_contents {
  padding: 40px 30px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8em;
  box-sizing: border-box;
}

#maintenance_info .maintenance_info_contents .close_maintenance_info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

#maintenance_info .maintenance_info_contents .close_maintenance_info span:last-child {
  margin-left: 5px;
  text-decoration: underline;
  font-weight: bold;
}

/*-------スマートフォン------*/
@media screen and (max-width: 730px) {
	h1 {
		font-size: 20px;
	}

	.main {
		width: 95%;
	}

	#maintenance_info .maintenance_info_contents {
		width: 95%;
	  padding: 15px 10px;
	}

  .maintenance_date .different_day::before {
    content: "\A";
    white-space: pre;
  }
}


