body{
		background-image: url(../img/shibo-washi-pattern-03.jpg);
		background-size:20% 20%;
}

.container {
  /* max-width: 1440px; */
  margin: 0;
  /* background-image: url(../img/shibo-washi-pattern-03.jpg); */
}






/*----------------------------------------
	Alternate
----------------------------------------*/
.alternate {
	display: flex;
	flex-direction: row-reverse;
}
nav{
	text-align: center;
	
}


.alternate_body {
	padding: 30px;
	/* background: #f9fae9;
	background-image: url(..//img/shibo-washi-pattern-03.jpg);
	background-size: 60%;
	 */
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 50px;
	/* margin-left: -50px; */
}




	

.alternate_ttl{
	text-align: center;
	font-size: 32px;
	letter-spacing: 0.2em;
	color: #3d4059;
	font-weight: 900;
	/* akabara-cinderella Regular */
}

.alternate_ttl_logo{
	font-family: akabara-cinderella, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-shadow: 2px 2px 5px #000;

}


.alternate_sttl {
	display: block;
	font-size: 14px;
	font-weight: 700;
	font-family: none;
	letter-spacing: 0.1em;
	text-shadow: none;
	color: rgb(65, 0, 0);
	
}
.alternate_txt {
	margin-top: 20px;
	line-height: 1.8;
	color: #74655e;
}
.alternate_thumb img {
	/* max-width: none; */
	/* width: 100%; */
	height: 100%;
	object-fit: cover;
}

.alternate_thumb {
	width: 50%;
	margin-top: -50px;
	margin-right: -50px;
}


.alternate._reverse {
	flex-direction: row;
}

.map{
	/* width: 100%; */
	position: relative;
	/* padding-top: 56.25%; */
	padding-top: 30%;
}
.map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}


/* ================================= */

/* メニュー */

.nav-list{
	margin: 10px ;
	font-size: 18px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}





.nav-item a{
	/* display: block; */
	background-color: #e9cec7;
	margin: 5px 5px;
	/* padding: 8px; */
	width: 120px;
	/* border-radius: 20px; */
	border-radius: 5px;

	position: relative;
	top: 0;
	padding: 10px 12px;
	display: inline-block;
	/* border: 1px solid #ccc; */
	color: #fff ;
	text-decoration: none;
	outline: none;
	/* アニメーションの設定 */
	transition: all .8s;

}

/* hoverした時 */
.nav-item a:hover{
	top: -3px;
	box-shadow: 5px 5px 8px  #74655e;
	color: rgb(116, 101, 94);
	background-color: #a5d5b5;
}






@media screen and (max-width: 767px),print {
	.alternate {
		width: 100%;
		flex-direction: column-reverse;
	}

	.alternate_body {
		width: 100%;
		flex-direction: column;
		
	
	}
	.alternate_thumb {
		width: 100%;
	}
	.alternate._reverse {
		flex-direction: column-reverse;
	}

	.alternate:last-of-type{
		flex-direction: column;
	}
	.alternate_thumb {
		width: 100%;
		margin-top: 10px;
		margin-right: 0;
	}
	/* .alternate_thumb:last-child{
		margin-bottom: 30px;
	} */
	
}

footer{
	margin-top: 20px;
	position: relative;
    text-align: center;



}






.sns-link{
    display: flex;
    justify-content: center;
	position: absolute;
	
	top: 10%;
	left: 50%;
    transform: translate(-50%,0);
}

.sns-icon{
    width: 48px;
    margin: 20px;

}


.sns-link a:hover img{
transform: scale(1.1);
}

.sns-link img{
transform: scale(1);
transition: .3s ease-in-out;
}

small{
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, 0);
	color: #fff;
}


/* // ===============================================
// footer用のループ */
.footer_loop{
    padding-top: 0;
    /* // padding-bottom: 30px; */
    overflow: hidden;
}

.footer_loop_box{
    display: flex;
    width: 100vw;
	/* height: 100%; */
}

.footer_loop_box img{
    min-width: 100vw;
	/* height: 100%; */
}

.footer_loop_box img:first-child{
    animation: loop 400s -200s linear infinite;
}

.footer_loop_box img:last-child{
    animation: loop2 400s linear infinite;
}
	
@keyframes loop{
    0%{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes loop2{
    0%{
        transform: translateX(0);
    }
    to{
        transform: translateX(-200%);
    }
}