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

/* コンテンツ */
section.form-area {
	padding: 0px 20px;
}
section.form-area h2 {
	font-size: 24px;
}

section.form-area h2 span {
	font-size: 14px;
	font-weight: normal;
}

section.form-area p {
	font-size: 16px;
	margin-bottom: 30px;
}

section.form-area dl {
	font-size: 16px;
}

section.form-area dl.last {
	margin-bottom: 60px;
}

section.form-area dl dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0px;
}

section.form-area dl dt span {
	display: block;
}

section.form-area dl dt span.req {
	background: #F00;
	color: #FFF;
	padding: 3px 6px;
	border-radius: 3px;
}

section.form-area dl dd {
	padding: 10px 4px;
}

section.form-area dl dd input.text,
section.form-area dl dd select,
section.form-area dl dd textarea {
	font-size: 16px;
	background: #fff;
	border: 1px solid #000;
	width: 100%;
	padding: 3px;
	border-radius: 3px;
}

section.form-area dl dd textarea {
	height: 100px;
}

section.form-area div.submit-btn-area {
	display: flex;
	justify-content: center;
}

section.form-area input.submit-btn {
	background: #00a0d2;
	color: #fff;
	font-size: 20px;
	border: none;
	padding: 30px 120px;
	cursor: pointer;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヒーローエリア */
	section#hero .pc {
	display: block !important ;
	}
	section#hero .sp {
	display: none;
	}
	/* コンテンツ */
	section.form-area {
	padding: 0px;
	}
	section.form-area dl {
	display: flex;
	align-items: flex-start;
	}
	section.form-area dl dt {
	flex: 0 0 300px;
	}
	section.form-area dl dd {
	flex: 1;
	padding-left: 20px;
	}
}

/* 小さい画面用の設定 */
@media (max-width: 767px) {
	/* ヒーローエリア */
	section#hero .pc {
	display: none;
	}
	section#hero .sp {
	display: block;
	}
}