/* --------------------------------------------------
	ステージ共通
-------------------------------------------------- */
/* サブページのステージ */
#zone_substage {
		width: auto;
		background-color: white; /*サブページ背景*/
		background-image: url("../image/img-sbstage.jpg");
		background-repeat: no-repeat;
		background-position: center center;
		overflow: hidden;
		background-size: cover;
		height: 300px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
}
#zone_substage h1 {
		font-size: 2.5em;
		color: #fff;
		font-weight: normal;
}
@media (max-width : 768px) {
		#zone_substage {
				background-position: center center;
				height: auto;
		}
		#zone_substage h1 {
				color: #fff;
				margin: 0;
				margin-top: 50px;
				padding-bottom: 40px;
				width: 100%;
				font-size: 1.3em;
				text-align: center;
		}
}
/*トピックス*/
.l_topics {
		max-width: 900px;
		margin: 0 auto 3em auto;
		border: 1px solid #ADADAD;
		border-radius: 10px;
		padding: 1em 3em 2em 3em;
}
.l_topics h2 {
		font-size: 1.5em;
		margin: 0 0 1em 0;
}
.l_topics span.date {
		display: block;
		text-align: right;
		color: #55CF94;
		font-weight: bold;
	margin-bottom: .6em;
}
.l_topics span.date:before {
		content: "\f5ac";
		font-weight: 600;
		font-family: "Font Awesome 5 Free";
		padding-right: 10px;
		color: #A1CBB7;
}
/*--------フォトアルバム*/
/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
columns: 4;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
  width:100%;
  height:auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
  .gallery{
  columns:3;
  } 
}

@media only screen and (max-width: 768px) {
  .gallery{
  columns: 2;
  } 
}


/*========= レイアウトのためのCSS ===============*/

/*画像を出現させるアニメーションCSS*/
.flipLeft{
animation-name: flipLeft;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity: 0;
}

@keyframes flipLeft{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}