@charset "utf-8";

/*==================================================
ギャラリーのためのcss
===================================*/
.wrapper{
width: 100%;
}
.gallery{
display: flex;
padding:0 0 0 0;
margin:0;
}
.gallery li
.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
list-style:none;
}
.gallery ul {width: 100%; height: auto;}
/*ギャラリー内のイメージは横幅100%にする*/

.list1 img{ width: auto; max-width: 100%; height: auto; max-height: 500px;}
.list2 img{ width: auto; max-width: 100%; height: auto; max-height: 400px;}



/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 768px) {

}



/*========= レイアウトのためのCSS ===============*/

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #000;
}

a:hover,
a:active{
	text-decoration: none;
}

h1{
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin:30px 0;
}





/*画像を出現させるアニメーションCSS

.flipLeft{
animation-name: flipLeft;
animation-duration:0.8s;
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;
  }
}

*/


