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

section.gallery h2.blue {
	font-size: 30px;
	font-weight: 600;
	color: #0096cd;
	margin-bottom: 60px;
}

/* 仮作成 */
ul.gallery_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}

ul.gallery_list li {
	flex: 0 0 267px;
	text-align: center;
	padding: 0 6px;
	margin-bottom: 10px;
}

ul.gallery_list li a {
	display: block;
	width: 267px;
	height: 180px;
	overflow: hidden;
	margin-bottom: 10px;
}

ul.gallery_list li img {
	display: block;
	transition: all 0.2s ease-in-out;
}

ul.gallery_list li img:hover {
	transform: scale(1.1);
}

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

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