@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.work_header,
div.work_footer {
	background: #e67e22;
}

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

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

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

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

.work .container h2 {
	text-align: left;
	font-size: 18px;
	color: #707070;
	margin-bottom: 20px;
}

.work .container h2 span {
	font-family: Noto Serif JP,serif;
	font-weight: normal;
}

.work .container p {
	margin-bottom: 20px;
}

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