@charset "UTF-8";

/*clearfix*/
.cf {
	zoom: 1;
	clear: both;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

/*-------------
PC
-------------*/
html,body {
}
p {
	background-image: url(../images/clear.gif);
	max-height: 999999px;
	line-height: 1.5;
	padding-top: 50px;
}
img {
	vertical-align: bottom;
	max-width:100%;
	height: auto;
}

.mb0 {
	margin-bottom: 0!important;
}

.pc-only {
	display: none;
}

/*body*/
body {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	color: #333333;
	font-size: 1.0em;
}
a {
	color: #524627;
}
a:hover {
	color: #524627;
	text-decoration: none;
}

.copy {
	text-align: center;
	font-size: 15px;
	letter-spacing: 2px;
	color: #524627;
	line-height: 2;
	margin-bottom: 50px;
}
.gallery {
	width: 80%;
	columns: 4;/*段組みの数*/
	padding:0 15px;/*ギャラリー左右に余白をつける*/
	margin:0 auto 120px;
}

.gallery li {
	margin-bottom: 20px;/*各画像下に余白をつける*/
	list-style:none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img {
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}
/*画像を出現させるアニメーション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;
  }
}

h3 {
	text-align: center;
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: normal;
}
.ei-txt {
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 2;
	margin-bottom: 15px;
}

/*form*/
table.formTable {
	width: 600px;
	margin: 0 auto;
}
table.formTable th {
	font-weight: normal;
	padding: 15px;
	border-bottom: 1px solid #eee;
}
table.formTable td {
	padding: 15px;
	border-bottom: 1px solid #eee;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
	background-color: #fff;
	color: #333;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 100%;
	padding: 0.5em;
	border-radius: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,.1) inset;
}
input[type="submit"] {
	font-size: 100%;
	padding: 0.2em 0.4em;
	background: #eee;
	color: #333;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 0 1px rgba(0,0,0,.2);
	border: 1px solid #ccc;
	text-shadow: -1px 1px 0 rgba(255,255,255,1);
}
input[type="submit"]:hover {
	box-shadow: 0 0 1px rgba(0,0,0,.2) inset;
}
input[type="number"] {
	background-color: #fff;
	color: #333;
	width: 20%;
	border: 1px solid #ddd;
	font-size: 100%;
	padding: 0.5em;
	border-radius: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,.1) inset;
}


footer {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}
.foot-ct {
	font-size: 14px;
	margin-bottom: 40px;
}
address {
	font-style: normal;
	font-size: 13px;
}

/*　横幅980px以下の段組み設定　*/
@media only screen and (max-width: 980px) {
	.gallery {
		width: 90%;
		columns:3;
	}
	.copy {
		font-size: 3.3vw;
	}
	h3 {
		font-size: 4.8vw;
	}
}

@media only screen and (max-width: 768px) {
	.gallery {
		width: 92%;
		columns: 2;
	}
	.copy {
		font-size: 3.3vw;
	}
	h3 {
		font-size: 4.8vw;
	}
}