@charset "UTF-8";
/* CSS Document */

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

div.head-center {
	display: flex;
	justify-content: center;
}

div.head-left {
	display: flex;
	justify-content: flex-start;
	padding-left: 20px;
}

div.head-right {
	display: flex;
	justify-content: flex-end;
	padding-right: 20px;
}

/* ローディング画面 */
#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;
}

/* Staff Introduction */
section.front-staff {
	position: relative;
	padding-bottom: 160px;
}

section.front-staff::after {
  content: '';
  display: block;
  position: absolute;
  left:0;
  bottom: 0;
  border-top: 60px solid transparent;  /* 透明 */ 
  border-left: 50vw solid transparent;  /* 透明 */ 
  border-right: 50vw solid #f0f0f0; 
  border-bottom: 60px solid #f0f0f0; 
}

ul.staff_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

ul.staff_list li {
	flex: 0 0 250px;
	text-align: center;
	padding: 0 15px;
	margin-bottom: 30px;
}

ul.staff_list li a {
	display: block;
	width: 250px;
	height: 297px;
	overflow: hidden;
	margin-bottom: 10px;
}

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

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

/* Gallery */
section.front-gallery {
	background: #f0f0f0;
	position: relative;
}

section.front-gallery::after {
  content: '';
  display: block;
  position: absolute;
  right:0;
  bottom: 10;
  border-top: 60px solid #f0f0f0;
  border-left: 50vw solid #f0f0f0;
  border-right: 50vw solid transparent; 
  border-bottom: 60px solid transparent; 
}

ul.gallery_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

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: 200px;
	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);
}

/* Recruit */
section.front-recruit {
	padding-top: 100px;
	margin-bottom: 60px;
}

ul.rec_list li.list1 {
	width: 476px;
	margin: 0 auto;
}

ul.rec_list li.list2 {
	width: 395px;
	margin: 0 auto;
}

ul.rec_list li.list3 {
	width: 373px;
	margin: 0 auto;
}

ul.rec_list li.list1 a {
	display: block;
	width: 476px;
	height: 356px;
	overflow: hidden;
}

ul.rec_list li.list2 a {
	display: block;
	width: 395px;
	height: 356px;
	overflow: hidden;
}

ul.rec_list li.list3 a {
	display: block;
	width: 373px;
	height: 356px;
	overflow: hidden;
}

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

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

/* News */
.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;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	/* ヒーローエリア */
	section#hero .pc {
	display: block !important ;
	}
	section#hero .sp {
	display: none;
	}
	/* Recruit */
	ul.rec_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}
	ul.rec_list li.list1 {
	flex: 0 0 476px;
	}
	ul.rec_list li.list2 {
	flex: 0 0 395px;
	}
	ul.rec_list li.list3 {
	flex: 0 0 356px;
	}
}

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

