@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.entry {
	padding: 0px 20px;
}

section.entry h2.blue {
	font-size: 30px;
	font-weight: 600;
	color: #0096cd;
	line-height: 1em;
	margin-bottom: 60px;
}

section.entry h2 span {
	font-size: 16px;
	color: #000;
}

section.entry h3 {
	font-size: 18px;
	padding: 20px 0px;
	border-bottom: 2px solid #0096cd;
}

section.entry p.last {
	margin-bottom: 60px;
}

section.entry img.image {
	width: 100%;
	height: auto;
	max-width: 409px;
	max-height: 257px;
}

section.entry div.box-area {
	margin-bottom: 20px;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヒーローエリア */
	section#hero .pc {
	display: block !important ;
	}
	section#hero .sp {
	display: none;
	}
	/* コンテンツ */
	section.entry {
	padding: 0px;
	}
	section.entry div.box-area {
	display: flex;
	justify-content: space-between;
	}
	section.entry div.box {
	flex: 0 0 409px;
	}
}

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