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

/* コンテンツ */
h2.blue {
	font-size: 30px;
	font-weight: 600;
	color: #0096cd;
	margin-bottom: 26px;
}

.news_box {
	background: #fff;
	padding: 30px 50px;
	border: 1px solid #999;
	box-shadow: 0 2px 3px rgba(103,103,103,0.50);
	margin-bottom: 60px;
}

.news_box dl {
	border-bottom: 2px solid #CCC;
	margin-bottom: 15px;
}

.news_box dl dt,
.news_box dl dd {
	font-family: "Noto Serif JP", serif;
}

.news_box dl dt {
	padding-bottom: 5px;
}
.news_box dl dd {
	font-size: 20px;
	padding-bottom: 10px;
}

.news_box ul.top_next {
	display: flex;
	justify-content: flex-end;
}

.news_box ul.top_next li {
	padding: 0 15px;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヒーローエリア */
	section#hero .pc {
	display: block !important ;
	}
	section#hero .sp {
	display: none;
	}
}

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



