.zoom-fade {
    overflow: hidden;
    width: 100%;
	height: 100vh;
    margin: 0 auto;
}
.zoom-fade__item {
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.zoom-fade__item:first-child {
  background-image: url(/images/bg-mainvisual-01.jpg);
}
.zoom-fade__item:nth-child(2) {
  background-image: url(/images/bg-mainvisual-02.jpg);
}
.zoom-fade__item:nth-child(3) {
  background-image: url(/images/bg-mainvisual-03.jpg);
}
.zoom-fade__item:nth-child(4) {
  background-image: url(/images/bg-mainvisual-04.jpg);
}
.zoom-fade__item:nth-child(5) {
  background-image: url(/images/bg-mainvisual-05.jpg);
}
.zoom-fade__item:nth-child(6) {
  background-image: url(/images/bg-mainvisual-06.jpg);
}
.zoom-fade__item:nth-child(7) {
  background-image: url(/images/bg-mainvisual-07.jpg);
}
/*
ズーム（ズームイン）させるためのアニメーション
コメントアウト部分を入れ替えれば、ズームアウトになります。

拡大率（scale()）はお好みで！
*/
.add-animation {
    /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
    /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
    animation: zoom-fade 10s both;
}
@keyframes zoom-fade {
    0% {
    /*transform: scale(1.05);*/
        transform: scale(1);
    }
    100% {
    /*transform: scale(1);*/
        transform: scale(1.08);
    }
}
.zoom-wrap{
    position: absolute;
    display:block;
    top: 0;left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background: radial-gradient(transparent 80%, rgba(0,0,0,.55) 99%);
}
.zoom-inner{
    position: absolute;
    top: 50%;left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 150;
    color: #fff;
	width:100%;
}
.zoom-inner h2{
	text-align: center;
	font-family: 'Waterfall';
    margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 5rem;
	color: #fff;
	letter-spacing: -0.01em;
	text-shadow:1px 1px 2px #333;
	transform:skewY(-3deg);
}
.zoom-inner .inner-content{
    text-align:center;
    font-family: "BIZ UDPMincho", serif;
    margin: 0;padding: 0;font-weight:400;font-size: 1rem;color: #fff;
    text-shadow:1px 1px 2px #333;
	text-rendering: optimizeLegibility;
}
.zoom-inner .inner-content span{
    font-family: "Oswald", sans-serif;
    margin: 0;
    padding: 0;font-weight:400;font-size: 1rem;color: #fff;
    letter-spacing: -.001rem;
    text-shadow:1px 1px 2px #333;
}
@media (min-width: 992px) {
	.zoom-inner h2{
		font-size: 9rem;
	}
	.zoom-inner .inner-content{
		font-size: 1.5rem;	
	}
	.zoom-inner .inner-content span{
		font-size: 1.5rem;
	}
}
.content-menu{
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.content-menu li.box{
	height: auto;
	width: 25%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.content-menu li.box:nth-of-type(1){
	background: url(/images/img-bg-bigmenu01.jpg);
    background-position: center right;
    background-size: cover;
}
.content-menu li.box:nth-of-type(2){
	background: url(/images/img-bg-bigmenu03.jpg);
    background-position: center right;
    background-size: cover;
}
.content-menu li.box:nth-of-type(3){
	background: url(/images/img-bg-bigmenu04.jpg);
    background-position: center right;
    background-size: cover;
}
.content-menu li.box:nth-of-type(4){
	background: url(/images/img-bg-bigmenu02.jpg);
    background-position: center right;
    background-size: cover;
}
.content-menu li.box a{
	display: block;
	text-align:center;
}
.content-menu li.box .box-inner{
    width:100%;
    height:100%;
    background: rgba(255,255,255,.85);
    padding: 1rem 0;
    transition: 3s ease-in-out;
}
.content-menu li.box .box-inner:hover{
    background: rgba(255,255,255,0);
}
.content-menu li.box a img{
	display: block;
    height: auto;
	margin: 0 auto;
	transform: scale(1);
    transition: .3s ease-in-out;
}
.content-menu li.box a img:hover{
	opacity: .85;
	transform: scale(.97);
}
@media (max-width: 767px) {
	.content-menu{
		flex-wrap: wrap;
	}
	.content-menu li.box{
		width: 50%;
	}
}
#garden-blog{
	background: url(/images/bg-garden-blog.jpg);
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}
.home .us-title{
	margin-top: 1em;
	margin-bottom: 2em;
	text-align: center;
}
.home h3.us-title{
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1em;
}
.home .slider>li {
	list-style: none;
}
.home .entry-thumbnail img{
    width: 100%;
    height: auto;
}