@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;
}

/* スタッフインタビュー */
.interview {
	padding: 60px 30px;
}

.interview h2 {
	margin-bottom: 40px;
}

.interview .container {
	max-width: 1050px;
	margin: 0 auto;
}

.interview article {
	margin-bottom: 100px;
}

.interview .photo img {
	display: block;
	width: 223px;
	height: auto;
	margin: 0 auto 10px;
}

.interview .text div.head {
	border-bottom: 1px #000 solid;
	margin-bottom: 20px;
}

.interview .text {
	width: 100%;
}

.interview .text h3 {
	font-family: "Noto Serif JP", serif;
	font-size: 18px;
	margin-bottom: 10px;
}

.interview .box {
	margin-bottom: 30px;
}

.interview h4 {
	font-family: "Noto Serif JP", serif;
	font-size: 18px;
	color: #000;
	margin-bottom: 40px;
	padding-left: 65px;
	height: 43px;
	line-height: 43px;
}

.interview h4.q1 {
	background-image: url(../img/q1.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.interview h4.q2 {
	background-image: url(../img/q2.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.interview h4.q3 {
	background-image: url(../img/q3.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.interview h4.q4 {
	background-image: url(../img/q4.png);
	background-repeat: no-repeat;
	background-position: left center;
}

p.answer {
	margin-bottom: 40px;
}

p.navi {
	text-align: right;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヒーローエリア */
	.hero {
	height: 800px;
	}
	/* スタッフインタビュー */
	.interview .box {
	display: flex;
	}
	.interview .text {
	margin-left: 20px;
	}
	
}