@charset "UTF-8";

/* ヒーローエリア（ローディング画面） */
#loading {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: #fff; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  transition: all 0.3s; 
  z-index: 200;
}

#loading img {
	display: block;
}

.loaded {
	opacity: 0;
	visibility: hidden;
}

/* コンテンツ */
div.mac_header,
div.mac_footer {
	background: #e67e22;
}

div.mac_header p,
div.mac_footer p {
	font-family: Noto Serif JP,serif;
	color: #FFF;
	max-width: 1050px;
	margin: 0 auto;
	padding: 15px;
}

div.mac_header p {
	font-size: 18px;
}

div.mac_footer p {
	text-align: center;
}

.machine .container {
	max-width: 1050px;
	padding: 40px 30px;
}

.machine .container h2 {
	font-family: Noto Serif JP,serif;
}

.machine .container table {
	border: 1px solid #707070;
	border-collapse: collapse;
	width: 100%;
}

.machine .container table th {
	font-weight: normal;
	text-align: center;
	background: #fce4d7;
}

.machine .container table th,
.machine .container table td {
	border: 1px solid #707070;
	padding: 10px;
}

.machine .container table tr td:nth-child(5) {
	text-align: center;
}

/* 大きい画面用の設定 */
@media(min-width:1050px) {
	.machine .container {
	margin: 0 auto;
	padding: 60px 0;
	}
}

