html,
body {
	height: 100%;
	width: 100%;
}

/*光さ100%に回年*/

body {
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 980px;
	/*ボックスの玻升*/
	background-color: #fff;
	letter-spacing: 2px;
	font-size: 14px;
	color: #333;
	line-height: 24px;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

p {
	text-align: left;
	padding: 20px 0 65px 0;
	letter-spacing: 1px;
	font-size: 14px;
	color: #444;
	line-height: 24px
}

h1 {
	padding: 0 0 10px 0;
	font-size: 135%;
	font-weight: bold;
}

h2 {
	letter-spacing: 4px;
	font-size: 80%;
	color: #999;
	font-weight: bold;
}

h3 {
	letter-spacing: 4px;
	font-size: 120%;
	font-weight: bold;
}

h4 {
	letter-spacing: 1px;
	font-size: 117%;
	padding: 25px 0 10px 0;
	font-weight: bold;
}

img {
	width: 100%;
	height: auto;
}

.menu {
	position: fixed;
	/*body妥燎に滦して冷滦芹弥*/
	left: 0;
	/*焊眉を面丙に*/
	top: 0;
	/*焊眉を面丙に*/
	width: 200px;
	/*玻升*/
}
.menu ul{
	width: 180px;
	padding-top: 20px;
	padding-left: 20px;
}

.footer {
	margin: 60px 0 50px -75px;
	position: absolute;
	/*body妥燎に滦して冷滦芹弥*/
	left: 50%;
	/*焊眉を面丙に*/
}

.contents {
	width: 680px;
	/*玻升*/
	position: absolute;
	/*body妥燎に滦して冷滦芹弥*/
	left: 200px;
	/*焊眉を面丙に*/
	margin: 0;
	padding: 114px 40px 100px 40px;
	background-color: #fff;
}


/*コンテンツ***********************************/



/*リンク***********************************/
A:link,
A:vixited {
	text-decoration: none;
	color: #555;
}

A:hover,
A:active {
	text-decoration: underline;
	color: #555;
}

/*写真集***********************************/

.gallery{
	padding: 0;
	margin:0;
	columns: 4;/*段組みの数*/
	column-gap: 25px;
	}
	
	.gallery li {
		width: 100%;
		margin-bottom: 25px;/*各画像下に余白をつける*/
	list-style:none;
	}
	
	/*ギャラリー内のイメージは横幅100%にする*/
	.gallery img{
		width:100%;
		height:auto;
		vertical-align: bottom;/*画像の下にできる余白を削除*/}
	

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

.gallery ul{
	margin:0;
	padding: 0;
	list-style: none;
  }
  
 
.gallery a:hover,
.gallery a:active{
	text-decoration: none;
  }
  
.gallery h1{
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin:30px 0;
  }
  
.gallery p{
	margin:0 10px 10px 10px;
	word-wrap : break-word;
  }
  
  /*画像を出現させるアニメーション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;
	}
  }